소스 검색

Fix Client Service

Zixuan 13 시간 전
부모
커밋
6778f3a4e4
1개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  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");
         }
     }
 }