NonInventPurchasingSystem/CPRNIMS.Domain/Profile/Canvass/SupplierRequestProfile.cs

24 lines
628 B
C#

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<SupplierRequest, Suppliers>();
CreateMap<Suppliers, SupplierResponse>();
CreateMap<SupplierResponse, SupplierRequest>().ReverseMap();
}
}
}