Gestite azioni in pagina ispezione

This commit is contained in:
2026-02-23 15:40:59 +01:00
parent efefd3499b
commit aaffaa3a2a
122 changed files with 307 additions and 1265 deletions

View File

@@ -63,7 +63,7 @@ public static class CoreModule
var dbPath = sp.GetRequiredService<IDbPathProvider>().GetDbPath();
options.UseSqlite($"Filename={dbPath}");
});
builder.Services.AddScoped<IDbInitializer, DbInitializer>();
builder.Services.AddScoped<IIspezioniService, IspezioniService>();
builder.Services.AddSingleton<IDbInitializer, DbInitializer>();
builder.Services.AddSingleton<IIspezioniService, IspezioniService>();
}
}

View File

@@ -4,9 +4,7 @@ using Microsoft.Extensions.Logging;
using MudBlazor.Services;
using MudExtensions.Services;
using SteUp.Maui.Core;
using SteUp.Maui.Core.Services;
using SteUp.Shared;
using SteUp.Shared.Core.Interface;
namespace SteUp.Maui
{