Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

SelectionLevelMappingProfile.cs 479B

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