Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

SelectionLevelMappingProfile.cs 449B

123456789101112131415161718
  1. using Diligent.WebAPI.Contracts.DTOs.SelectionLevel;
  2. namespace Diligent.WebAPI.Business.MappingProfiles
  3. {
  4. public class SelectionLevelMappingProfile : Profile
  5. {
  6. public SelectionLevelMappingProfile()
  7. {
  8. #region Model to DTO
  9. CreateMap<SelectionLevel, SelectionLevelResposneDto>();
  10. CreateMap<SelectionLevel, SelectionLevelResponseWithDataDto>();
  11. #endregion
  12. }
  13. }
  14. }