using AutoMapper; using ConstructorApp.DtoLayer.ServiceDto; using ConstructorApp.EntityLayer.Entities; namespace ConstructorAppApi.Mapping { public class ServiceMapping : Profile { public ServiceMapping() { CreateMap().ReverseMap(); CreateMap().ReverseMap(); CreateMap().ReverseMap(); } } }