using AutoMapper; using Kurs.Platform.Abouts; using Kurs.Platform.Blog; using Kurs.Platform.Contacts; using Kurs.Platform.Demos; using Kurs.Platform.Entities; using Kurs.Platform.Orders; using Kurs.Platform.Services; namespace Kurs.Platform.Public; public class PublicAutoMapperProfile : Profile { public PublicAutoMapperProfile() { CreateMap().ReverseMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap().ReverseMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); } }