using Microsoft.EntityFrameworkCore; namespace ApiPolo.Interfaces { public interface ITenantDbContextFactory { ITenantDbContext GetDbContext(string tenant); } }