Ver código fonte

update IClient

Zixuan 9 horas atrás
pai
commit
3df354cb51

+ 1 - 1
EEMSUIClient/Services/ClientService.cs

@@ -12,7 +12,7 @@ namespace EEMSUIClient.Services
 
         public ClientService()
         {
-            _hubBase = new HubBase(this);
+            _hubBase = new ClientCaller(this);
             _clientCaller = _hubBase;
         }
 

+ 0 - 1
Server/EEMSClientCore/ClientCaller.cs

@@ -15,7 +15,6 @@ public partial class ClientCaller : IClientCaller
 
     Task<bool> IClientCaller.UpdateRealTimeData(Dictionary<string, object> realtimeData)
     {
-
         return this.Send("UpdateRealTimeData", realtimeData);
     }
 

+ 1 - 1
Server/EEMSClientCore/ClientProvider.cs

@@ -53,4 +53,4 @@ public interface IClientBaseProvider
 {
     public string? RecipePath { get; set; }
     public string? ConfigPath { get; set; }
-}
+}