using AutoMapper; using FATrace.Model; using FATrace.WPLApp.ModelDto; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FATrace.WPLApp.MapperProfile { public class RawProUseProfile : Profile { public RawProUseProfile() { CreateMap().ReverseMap(); CreateMap().ReverseMap(); } } }