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

InsurerMappingProfile.cs 479B

123456789101112131415161718
  1. namespace Diligent.WebAPI.Business.MappingProfiles
  2. {
  3. public class InsurerMappingProfile : Profile
  4. {
  5. [ExcludeFromCodeCoverage]
  6. public InsurerMappingProfile()
  7. {
  8. #region DTO to Model
  9. CreateMap<InsurerCreateDto, Insurer>();
  10. CreateMap<InsurerUpdateDto, Insurer>();
  11. #endregion
  12. #region Model to DTO
  13. CreateMap<Insurer, InsurerViewDto>();
  14. #endregion
  15. }
  16. }
  17. }