10 lines
167 B
C#
10 lines
167 B
C#
using ApiPolo.Data;
|
|
|
|
namespace ApiPolo.Interfaces
|
|
{
|
|
public interface ITenantDbContextFactory
|
|
{
|
|
TenantDbContext GetDbContext(string tenant);
|
|
}
|
|
}
|