|
@@ -1,5 +1,6 @@
|
|
|
using EEMSClientCore;
|
|
|
using ServiceBase;
|
|
|
+using System.Windows;
|
|
|
|
|
|
namespace EEMSUIClient.Services
|
|
|
{
|
|
@@ -84,7 +85,12 @@ namespace EEMSUIClient.Services
|
|
|
|
|
|
public void FileReceivedNotify(FileType fileType)
|
|
|
{
|
|
|
- throw new NotImplementedException();
|
|
|
+ MessageBox.Show($"{fileType} Received");
|
|
|
+ }
|
|
|
+
|
|
|
+ public void StartFileReceiveNotify(FileType fileType)
|
|
|
+ {
|
|
|
+ MessageBox.Show($"Start Receiving {fileType} File");
|
|
|
}
|
|
|
}
|
|
|
}
|