| 12345678910111213141516171819 |
- using Diligent.WebAPI.Contracts.DTOs.SelectionProcess;
-
- namespace Diligent.WebAPI.Business.MappingProfiles
- {
- public class SelectionProcessMappingProfile : Profile
- {
- public SelectionProcessMappingProfile()
- {
- #region DTO to Model
- CreateMap<SelectionProcessCreateDto, SelectionProcess>();
- #endregion
-
- #region Model to DTO
- CreateMap<SelectionProcess, SelectionProcessResposneDto>();
- CreateMap<SelectionProcess, SelectionProcessResposneWithoutApplicantDto>();
- #endregion
- }
- }
- }
|