moved from SVN to git

This commit is contained in:
root
2016-06-27 01:45:38 +02:00
commit 886b5e4fd6
4735 changed files with 2306248 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
using System.ServiceModel;
using NHibernate;
namespace BeWo.Data
{
public class SessionOperationContextExt : IExtension<OperationContext>
{
public static SessionOperationContextExt Current
{
get
{
return OperationContext.Current.Extensions.Find<SessionOperationContextExt>();
}
}
public ISession Session { get; set; }
public void Attach(OperationContext owner)
{
}
public void Detach(OperationContext owner)
{
}
}
}