Files
amrez-nova-eop-services-api/AMREZ.EOP.Abstractions/Storage/IDbScope.cs
Thanakarn Klangkasame 92e614674c Init Git
2025-09-30 11:01:02 +07:00

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;
}