using Umbraco.Cms.Core.Scoping;
using Umbraco.Cms.Infrastructure.Persistence;
namespace Umbraco.Cms.Infrastructure.Scoping;
public interface IScope : ICoreScope
{
/// <summary>
/// Gets the scope database.
/// </summary>
IUmbracoDatabase Database { get; }
/// Gets the Sql context.
ISqlContext SqlContext { get; }
}