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.

TechnologyMappingProfile.cs 446B

123456789101112131415
  1. namespace Diligent.WebAPI.Business.MappingProfiles
  2. {
  3. public class TechnologyMappingProfile : Profile
  4. {
  5. public TechnologyMappingProfile()
  6. {
  7. #region Model to DTO
  8. CreateMap<Technology, TechnologyResponseDto>();
  9. //CreateMap<TechnologyApplicant, TechnologyResponseDto>(); -- ermin
  10. CreateMap<TechnologyApplicant, TechnologyViewDto>();
  11. #endregion
  12. }
  13. }
  14. }