|
12345678910111213141516171819 |
-
- using Diligent.WebAPI.Contracts.DTOs.SelectionLevel;
-
- namespace Diligent.WebAPI.Business.MappingProfiles
- {
- [ExcludeFromCodeCoverage]
- public class SelectionLevelMappingProfile : Profile
- {
- public SelectionLevelMappingProfile()
- {
-
-
- #region Model to DTO
- CreateMap<SelectionLevel, SelectionLevelResposneDto>();
- CreateMap<SelectionLevel, SelectionLevelResponseWithDataDto>();
- #endregion
- }
- }
- }
|