using AutoMapper; using Edge.Core.Database.Configuration.Models; using System; using System.Collections.Generic; using System.Text; namespace Edge.Core.Processor.Dispatcher { public class AutoMapperProfile : Profile { public AutoMapperProfile() { ShouldMapField = fi => false; CreateMap().ReverseMap(); CreateMap().ReverseMap(); CreateMap().ReverseMap(); } } }