aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/Update/IPPCUpdateService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Update/IPPCUpdateService.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/Update/IPPCUpdateService.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Update/IPPCUpdateService.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Update/IPPCUpdateService.cs
new file mode 100644
index 000000000..b4e66beda
--- /dev/null
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Update/IPPCUpdateService.cs
@@ -0,0 +1,23 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Runtime.Serialization;
+using System.ServiceModel;
+using System.Text;
+using Tango.PPC.Common.Update;
+
+namespace Tango.PPC.Common.Update
+{
+ [ServiceContract]
+ public interface IPPCUpdateService
+ {
+ [OperationContract]
+ UploadVersionResponse UploadVersion(UploadVersionRequest request);
+
+ [OperationContract]
+ void NotifyUploadCompleted(UploadCompletedRequest request);
+
+ [OperationContract]
+ LatestVersionResponse GetLatestVersion();
+ }
+}