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.

UserMappingDTOToEntity.cs 438B

12345678910111213141516
  1. using AutoMapper;
  2. using BlackRock.Reporting.API.Core.Models;
  3. using BlackRock.Reporting.API.Mediator.UserMediator.Dto;
  4. using BlackRock.Reporting.API.Mediator.UserMediator.Model;
  5. namespace BlackRock.Reporting.API.Mediator.Mapping
  6. {
  7. public class UserMappingDTOToEntity : Profile
  8. {
  9. public UserMappingDTOToEntity()
  10. {
  11. CreateMap<UserDto, User>();
  12. CreateMap<UserCommand, User>();
  13. }
  14. }
  15. }