using AMREZ.EOP.Abstractions.Applications.Tenancy; namespace AMREZ.EOP.Abstractions.Storage; public interface IDbScope { void EnsureForTenant(ITenantContext tenant); TContext Get() where TContext : class; }