Files
BeWoPlaner/Service/ServiceContracts/IDownloadBeWoService.cs
rene 4fbfdbaf2c Unit Tests erstellt
Informationen ausgelagert
Kleines Spy/Test Programm erstellt
Mehr Exceptions/InvalidUpdateFileRequestException.cs
Launcher Host in Download Server geändert
Download Server macht zusätzlich Abfrage an den Hauptserver
Download geht jetzt stückweise von statten
2022-12-28 16:36:59 +01:00

29 lines
809 B
C#

using System;
using System.IO;
using System.ServiceModel;
using BS.Shared.DataContracts;
using BS.SharedLauncher.DataContract;
namespace BeWo.Service.ServiceContracts
{
[ServiceContract]
public interface IDownloadBeWoService
{
[FaultContract(typeof(BeWoFault))]
[OperationContract]
UpdateFileResponse Download2(UpdatePlanRequest request);
[FaultContract(typeof(BeWoFault))]
[OperationContract]
UpdatePlanResponse DownloadInfo(UpdatePlanRequest request);
[FaultContract(typeof(BeWoFault))]
[OperationContract]
UpdatePlanResponse GetUpdatePlan(UpdatePlanRequest request);
[FaultContract(typeof(BeWoFault))]
[OperationContract]
UpdateFileResponse GetUpdateFile(UpdateFileRequest request);
}
}