using System; namespace Abp.Runtime { public interface IAmbientScopeProvider<T> { T GetValue(string contextKey); IDisposable BeginScope(string contextKey, T value); } }