123456789101112131415161718192021222324 |
- using OaSystem.Domain.Entities.System;
- using OASystem.Domain.Dtos;
- using OASystem.Domain.Entities;
- <<<<<<< HEAD
- =======
- using OASystem.Domain.Entities.System;
- >>>>>>> 509dd81bc00fbcc2a46ace5347f4518b0fa2ee8a
- using OASystem.Domain.ViewModels;
- namespace OASystem.Domain.AutoMappers
- {
- public class _baseMappingProfile : Profile
- {
- public _baseMappingProfile()
- {
- //CreateMap<OrderDto, Order>();
- #region Login
- CreateMap<LoginDto, Sys_Users>();
- #endregion
- }
- }
- }
|