25 lines
779 B
C#
25 lines
779 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();
|
|
CreateMap<StartCanvassRequest, ForAISearchingTagging>();
|
|
CreateMap<ForAISearchingTagging, StartCanvassResponse>().ReverseMap();
|
|
}
|
|
}
|
|
}
|