AutoMapperProfile.cs 377 B

123456789101112131415
  1. using AutoMapper;
  2. using WingInterfaceLibrary.DTO.Device;
  3. using WingInterfaceLibrary.DTO.User;
  4. namespace WingDeviceService
  5. {
  6. public class AutoMapperProfile : Profile
  7. {
  8. public AutoMapperProfile()
  9. {
  10. CreateMap<UserDTO, UserPasswordDTO>().ReverseMap();
  11. CreateMap<DeviceInfoDTO, CacheDeviceDTO>().ReverseMap();
  12. }
  13. }
  14. }