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 301B

12345678910111213
  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. #endregion
  10. }
  11. }
  12. }