fly hace 1 año
padre
commit
055f8413e8
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      AutoMapperProfile.cs

+ 2 - 1
AutoMapperProfile.cs

@@ -12,6 +12,7 @@ using WingInterfaceLibrary.DTO.AdminFeature;
 using WingInterfaceLibrary.Interface;
 using WingInterfaceLibrary.DTO.Consultation;
 using WingInterfaceLibrary.DTO.Patient;
+using WingServerCommon.Interfaces.Cache;
 
 namespace WingLiveConsultationService
 {
@@ -31,7 +32,7 @@ namespace WingLiveConsultationService
             CreateMap<PatientInfoDTO, ClientPatientInfoBaseDTO>().ReverseMap();
             CreateMap<DeviceInfoDTO, DeviceExtendInfoDTO>().ReverseMap();
             CreateMap<DeviceInfoDTO, EmergencyDeviceInfoDTO>().ReverseMap();
-            
+            CreateMap<TokenDTO, Token>().ReverseMap();
         }
     }
 }