mirror of
https://github.com/oqtane/oqtane.framework.git
synced 2025-05-17 18:14:22 +00:00
14 lines
329 B
C#
14 lines
329 B
C#
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.Extensions.Configuration;
|
|
using Oqtane.Infrastructure;
|
|
|
|
namespace Oqtane.Repository
|
|
{
|
|
public interface IDBContextDependencies
|
|
{
|
|
ITenantManager TenantManager { get; }
|
|
IHttpContextAccessor Accessor { get; }
|
|
IConfigurationRoot Config { get; }
|
|
}
|
|
}
|