35 lines
831 B
C#
35 lines
831 B
C#
using BeWo.Service.ServiceContracts;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.ServiceModel;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BeWo.Service.ServiceImplementations
|
|
{
|
|
[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall, ConcurrencyMode = ConcurrencyMode.Single)]
|
|
public class OperationsEnhancedServiceImp : IOperationsEnhancedService
|
|
{
|
|
public object Method1(object input, object input2)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public object Method2(object input, object input2)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public object Method3(object input, object input2)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public object Method4(object input, object input2)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|