readd wwwroot

This commit is contained in:
ElenitaMLG
2024-04-08 15:00:46 +03:00
parent 897193c865
commit 116405bd75
225 changed files with 88814 additions and 3 deletions
+2 -3
View File
@@ -1,9 +1,8 @@
using Blazored.LocalStorage;
using HealthcareManagerUI;
using HealthcareManagerUI.Services.Authentication;
using HealthcareManagerUI.Services.Http;
using HealthcareManagerUI.Services.TokenService;
using AuthenticationService = Microsoft.AspNetCore.Authentication.AuthenticationService;
using IAuthenticationService = Microsoft.AspNetCore.Authentication.IAuthenticationService;
var builder = WebApplication.CreateBuilder(args);
@@ -18,7 +17,7 @@ builder.Services.AddScoped<IRequestHttpService>(provider =>
});
builder.Services.AddScoped<IAuthenticationService, AuthenticationService>();
builder.Services.AddBlazoredLocalStorage();
builder.Services.AddScoped<ITokenService, TokenService>();
//builder.Services.AddScoped<ITokenService, TokenService>();
var app = builder.Build();