Dashboard Page - Appointments:
- create separate dashboard components for doctor and patient - add appointments to dashboard components - add code to backend for appointments retrieval
This commit is contained in:
@@ -2,6 +2,7 @@ using Blazored.LocalStorage;
|
||||
using Microsoft.AspNetCore.Components.Web;
|
||||
using Microsoft.AspNetCore.Components.WebAssembly.Hosting;
|
||||
using HealthcareManagerUiWebAssem;
|
||||
using HealthcareManagerUiWebAssem.Services.Appointment;
|
||||
using HealthcareManagerUiWebAssem.Services.Authentication;
|
||||
using HealthcareManagerUiWebAssem.Services.Http;
|
||||
using HealthcareManagerUiWebAssem.Services.Profile;
|
||||
@@ -22,5 +23,6 @@ builder.Services.AddScoped<IRequestHttpService, RequestHttpService>();
|
||||
builder.Services.AddScoped<UserService>();
|
||||
builder.Services.AddScoped<IAuthenticationService, AuthenticationService>();
|
||||
builder.Services.AddScoped<IProfileService, ProfileService>();
|
||||
builder.Services.AddScoped<IAppointmentService, AppointmentService>();
|
||||
|
||||
await builder.Build().RunAsync();
|
||||
|
||||
Reference in New Issue
Block a user