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