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

6 lines
177 B
C#

namespace AMREZ.EOP.Abstractions.Applications.Tenancy;
public interface ITenantDbContextFactory
{
TContext Create<TContext>(ITenantContext tenant) where TContext : class;
}