Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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. }