Forráskód Böngészése

Fix Client Service

Zixuan 13 órája%!(EXTRA string=óta)
szülő
commit
6778f3a4e4
1 módosított fájl, 7 hozzáadás és 1 törlés
  1. 7 1
      EEMSUIClient/Services/ClientService.cs

+ 7 - 1
EEMSUIClient/Services/ClientService.cs

@@ -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");
         }
     }
 }