using AutoMapper; using Kurs.Platform.Entities; namespace Kurs.Platform.Orders; public class OrderApplicationAutoMapperProfile : Profile { public OrderApplicationAutoMapperProfile() { CreateMap().ReverseMap(); CreateMap(); CreateMap(); CreateMap(); } }