using AutoMapper; using System; using System.Collections.Generic; using System.Text; using Application.ATG_Classic_App.Model; using Edge.Core.IndustryStandardInterface.ATG; namespace Application.ATG_App { public class AutoMapperProfile : Profile { public AutoMapperProfile() { ShouldMapField = fi => false; CreateMap().ReverseMap(); CreateMap().ReverseMap(); CreateMap().ReverseMap(); CreateMap().ReverseMap(); CreateMap().ReverseMap(); CreateMap().ReverseMap(); } } }