Files
BeWoPlaner/Service/ServiceImplementations/OperationsEnhancedServiceImp.cs
2025-03-19 09:35:01 +01:00

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();
}
}
}