6 lines
177 B
C#
6 lines
177 B
C#
namespace AMREZ.EOP.Abstractions.Applications.Tenancy;
|
|
|
|
public interface ITenantDbContextFactory
|
|
{
|
|
TContext Create<TContext>(ITenantContext tenant) where TContext : class;
|
|
} |