- fix program.cs startup
- fix calcolo dim DB
- fix IOB count
This commit is contained in:
Samuele Locatelli
2026-06-03 18:32:51 +02:00
parent febe1d0132
commit 217836099c
10 changed files with 60 additions and 22 deletions
@@ -20,10 +20,16 @@ namespace MP.Data.Repository.MpLand
#region Public Constructors
public MpLandRepository(IConfiguration configuration, IDbContextFactory<MoonProContext> ctxFactory)
public MpLandRepository(
IConfiguration configuration,
IDbContextFactory<MoonProContext> ctxFactory,
IDbContextFactory<MoonPro_FluxContext> ctxFactoryFL,
IDbContextFactory<MoonPro_STATSContext> ctxFactorySta)
{
_configuration = configuration;
_ctxFactory = ctxFactory;
_ctxFactoryFluxLog = ctxFactoryFL;
_ctxFactoryStats= ctxFactorySta;
}
#endregion