選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

SelectionProcessMappingProfile.cs 596B

12345678910111213141516171819
  1. using Diligent.WebAPI.Contracts.DTOs.SelectionProcess;
  2. namespace Diligent.WebAPI.Business.MappingProfiles
  3. {
  4. public class SelectionProcessMappingProfile : Profile
  5. {
  6. public SelectionProcessMappingProfile()
  7. {
  8. #region DTO to Model
  9. CreateMap<SelectionProcessCreateDto, SelectionProcess>();
  10. #endregion
  11. #region Model to DTO
  12. CreateMap<SelectionProcess, SelectionProcessResposneDto>();
  13. CreateMap<SelectionProcess, SelectionProcessResposneWithoutApplicantDto>();
  14. #endregion
  15. }
  16. }
  17. }