temp
This commit is contained in:
@@ -1,25 +1,27 @@
|
||||
using System.ServiceModel;
|
||||
using BS.Shared.Core;
|
||||
using BS.Shared.Exceptions;
|
||||
using System.ServiceModel;
|
||||
|
||||
namespace BeWo.Data
|
||||
{
|
||||
public class MultitenancyOperationContextExt : IExtension<OperationContext>
|
||||
{
|
||||
public static MultitenancyOperationContextExt Current
|
||||
{
|
||||
get
|
||||
{
|
||||
public class MultitenancyOperationContextExt : IExtension<OperationContext>
|
||||
{
|
||||
public static MultitenancyOperationContextExt Current
|
||||
{
|
||||
get
|
||||
{
|
||||
return OperationContext.Current != null ? OperationContext.Current.Extensions.Find<MultitenancyOperationContextExt>() : null;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public string Tenant { get; set; }
|
||||
public string Tenant { get; set; }
|
||||
|
||||
public void Attach(OperationContext owner)
|
||||
{
|
||||
}
|
||||
public void Attach(OperationContext owner)
|
||||
{
|
||||
}
|
||||
|
||||
public void Detach(OperationContext owner)
|
||||
{
|
||||
}
|
||||
}
|
||||
public void Detach(OperationContext owner)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user