9 lines
226 B
C#
9 lines
226 B
C#
using AMREZ.EOP.Abstractions.Applications.Tenancy;
|
|
|
|
namespace AMREZ.EOP.Abstractions.Storage;
|
|
|
|
public interface IDbScope
|
|
{
|
|
void EnsureForTenant(ITenantContext tenant);
|
|
TContext Get<TContext>() where TContext : class;
|
|
} |