using AutoMapper; using orthodox.Model; using orthodox.Mapping; namespace orthodox.Dto { public class MappingProfile : Profile { public MappingProfile() { this.CreateMap().ReverseMap(); this.CreateMap().ReverseMap(); this.CreateMap().ReverseMap(); this.CreateMap().ReverseMap(); } } }