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