You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

InsurerMappingProfile.cs 445B

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