Primo sviluppo sincronizzazione e migliorie ui

This commit is contained in:
2025-05-19 16:47:21 +02:00
parent 6f08ba87be
commit 626408412b
66 changed files with 1824 additions and 91 deletions

View File

@@ -6,8 +6,7 @@ using MudBlazor.Services;
using Template.Shared.Components;
using Template.Shared.Core.Interface;
using Template.Shared.Core.Services;
using Template.Shared.Interfaces;
using Template.Web.Services;
using Template.Web.Core.Services;
var builder = WebAssemblyHostBuilder.CreateDefault(args);
@@ -16,6 +15,9 @@ builder.Services.AddAuthorizationCore();
builder.Services.AddScoped<IFormFactor, FormFactor>();
builder.Services.AddScoped<INetworkService, NetworkService>();
builder.Services.AddScoped<IIntegryApiService, IntegryApiService>();
builder.Services.AddScoped<ISyncDbService, SyncDbService>();
builder.Services.AddScoped<IManageDataService, ManageDataService>();
builder.Services.AddScoped<AppAuthenticationStateProvider>();
builder.Services.AddScoped<AuthenticationStateProvider>(provider => provider.GetRequiredService<AppAuthenticationStateProvider>());