using AutoMapper; using System; using System.Collections.Generic; using System.Text; namespace Gateway.Payment { public class AutoMapperProfile : Profile { public AutoMapperProfile() { ShouldMapField = fi => false; CreateMap().ReverseMap(); //CreateMap().ReverseMap(); //CreateMap().ReverseMap(); //CreateMap().ReverseMap(); //CreateMap().ReverseMap(); //CreateMap().ReverseMap(); } } }