Files
Umbraco-CMS/src/Umbraco.Core/Persistence/ThreadStaticDatabaseScopeAccessor.cs
2017-05-24 12:25:39 +02:00

19 lines
423 B
C#

// fixme - remove this file
//using System;
//namespace Umbraco.Core.Persistence
//{
// internal class ThreadStaticDatabaseScopeAccessor : IDatabaseScopeAccessor
// {
// [ThreadStatic]
// private static DatabaseScope _databaseScope;
// public DatabaseScope Scope
// {
// get { return _databaseScope; }
// set { _databaseScope = value; }
// }
// }
//}