_baseMappingProfile.cs 544 B

123456789101112131415161718192021222324
  1. using OaSystem.Domain.Entities.System;
  2. using OASystem.Domain.Dtos;
  3. using OASystem.Domain.Entities;
  4. <<<<<<< HEAD
  5. =======
  6. using OASystem.Domain.Entities.System;
  7. >>>>>>> 509dd81bc00fbcc2a46ace5347f4518b0fa2ee8a
  8. using OASystem.Domain.ViewModels;
  9. namespace OASystem.Domain.AutoMappers
  10. {
  11. public class _baseMappingProfile : Profile
  12. {
  13. public _baseMappingProfile()
  14. {
  15. //CreateMap<OrderDto, Order>();
  16. #region Login
  17. CreateMap<LoginDto, Sys_Users>();
  18. #endregion
  19. }
  20. }
  21. }