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.

SelectionLevelMappingProfile.cs 479B

преди 3 години
преди 3 години
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. }