namespace ServiceBase; /// /// EEMS Client -> EEMS Server /// public interface IClientCaller { Task RegisterDevice(DeviceInfo deviceInfo); Task FilePack(Guid guid, byte[] buffer, int current, int total); Task UpdateRealTimeData(Dictionary realtimeData); } /// /// EEMS Server -> EEMS Client /// public interface IClientProvider { Task RequestFile(Guid guid, FileType fileType); }