|
@@ -53,6 +53,22 @@ namespace EEMSUIClient.Services
|
|
|
return _clientCaller.UpdateRealTimeData(realtimeData).Result;
|
|
|
}
|
|
|
|
|
|
+ public void FileReceivedNotify(FileType fileType)
|
|
|
+ {
|
|
|
+ MessageBox.Show($"{fileType} Received");
|
|
|
+ }
|
|
|
+
|
|
|
+ public void StartFileReceiveNotify(FileType fileType)
|
|
|
+ {
|
|
|
+ //Log Here
|
|
|
+ //MessageBox.Show($"Start Receiving {fileType} File");
|
|
|
+ }
|
|
|
+
|
|
|
+ public bool AllowReceiveFile()
|
|
|
+ {
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+
|
|
|
protected virtual void Dispose(bool disposing)
|
|
|
{
|
|
|
if (!disposedValue)
|
|
@@ -82,16 +98,5 @@ namespace EEMSUIClient.Services
|
|
|
Dispose(disposing: true);
|
|
|
GC.SuppressFinalize(this);
|
|
|
}
|
|
|
-
|
|
|
- public void FileReceivedNotify(FileType fileType)
|
|
|
- {
|
|
|
- MessageBox.Show($"{fileType} Received");
|
|
|
- }
|
|
|
-
|
|
|
- public void StartFileReceiveNotify(FileType fileType)
|
|
|
- {
|
|
|
- //Log Here
|
|
|
- //MessageBox.Show($"Start Receiving {fileType} File");
|
|
|
- }
|
|
|
}
|
|
|
}
|