Zixuan преди 9 часа
родител
ревизия
3df354cb51
променени са 3 файла, в които са добавени 2 реда и са изтрити 3 реда
  1. 1 1
      EEMSUIClient/Services/ClientService.cs
  2. 0 1
      Server/EEMSClientCore/ClientCaller.cs
  3. 1 1
      Server/EEMSClientCore/ClientProvider.cs

+ 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; }
-}
+}