ApiManutenzioni/ApiPolo/Interfaces/ITenantDbContextFactory.cs
LORENZO\pacio d25173b0c5 dbcontext per maras (come esempio futuri dbcontext)
implementazione interfaccie e factory per dbcontext universali
creato TestController per esempi
2025-03-22 12:52:40 +01:00

10 lines
185 B
C#

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