10 lines
185 B
C#
10 lines
185 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
namespace ApiPolo.Interfaces
|
|
{
|
|
public interface ITenantDbContextFactory
|
|
{
|
|
ITenantDbContext GetDbContext(string tenant);
|
|
}
|
|
}
|