Files
BeWoPlaner/Service/ServiceImplementations/DownloadBeWoServiceImp.cs
rene bae1380d45 Hauptfeatures laufen, Sicherheit eingebaut, Dynamische Programm Location
(Christian Gespräch 02.03.2022, OneNote Notizen 1)
2022-03-02 14:45:33 +01:00

20 lines
548 B
C#

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.ServiceModel;
using BeWo.Service.ServiceContracts;
using BS.SharedLauncher.DataContract;
namespace BeWo.Service.ServiceImplementations
{
[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall, ConcurrencyMode = ConcurrencyMode.Single)]
public class DownloadBeWoServiceImp : IDownloadBeWoService
{
public BeWoProgramPackageDC Download(BeWoProgramFilterDC filter)
{
return null;
}
}
}