using AutoMapper; using System.Reflection; using WebApplication5.Models; namespace WebApplication5 { public class AutoMapperProfile : Profile { public AutoMapperProfile() { CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); CreateMap(); } } }