20 lines
548 B
C#
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;
|
|
}
|
|
}
|
|
} |