Files
BeWoPlaner/Service/ServiceImplementations/GkvInvoiceServiceImp.cs

12 lines
310 B
C#
Raw Normal View History

using BeWo.Service.ServiceContracts;
using System.ServiceModel;
namespace BeWo.Service.ServiceImplementations
{
[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall, ConcurrencyMode = ConcurrencyMode.Single)]
public class GkvInvoiceService : IGkvInvoiceService
{
}
}