using CPRNIMS.Infrastructure.Dto.Canvass.Request; using CPRNIMS.Infrastructure.Dto.Canvass.Response; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using CPRNIMS.Infrastructure.Entities.Canvass; namespace CPRNIMS.Domain.Profile.Canvass { public class SupplierRequestProfile : AutoMapper.Profile { public SupplierRequestProfile() { CreateMap(); CreateMap(); CreateMap().ReverseMap(); CreateMap(); CreateMap().ReverseMap(); } } }