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