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