using AutoMapper; using System; using System.Collections.Generic; using System.Text; namespace Gateway.Payment { public class AutoMapperProfile : Profile { public AutoMapperProfile() { ShouldMapField = fi => false; CreateMap<Gateway.Payment.Shared.PaymentOrderDto, Gateway.Payment.Shared.PaymentOrder>().ReverseMap(); //CreateMap<ProbeConfig, Probe>().ReverseMap(); //CreateMap<ProductConfig, Product>().ReverseMap(); //CreateMap<Edge.Core.IndustryStandardInterface.ATG.Alarm, ATG_Classic_App.Model.Alarm>().ReverseMap(); //CreateMap<Edge.Core.IndustryStandardInterface.ATG.Inventory, ATG_Classic_App.Model.Inventory>().ReverseMap(); //CreateMap<Edge.Core.IndustryStandardInterface.ATG.Delivery, ATG_Classic_App.Model.Delivery>().ReverseMap(); } } }