60 lines
2.0 KiB
C#
60 lines
2.0 KiB
C#
using HospitalContracts.BusinessLogicsContracts;
|
|
using HospitalBusinessLogics.BusinessLogics;
|
|
using HospitalContracts.StoragesContracts;
|
|
using HospitalDatabaseImplement.Implements;
|
|
using HospitalWebApp;
|
|
using HospitalBusinessLogics.OfficePackage;
|
|
using HospitalBusinessLogics.OfficePackage.Implements;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
// Add services to the container.
|
|
builder.Services.AddControllersWithViews();
|
|
|
|
// Storage services
|
|
builder.Services.AddTransient<IDoctorStorage, DoctorStorage>();
|
|
builder.Services.AddTransient<IPatientStorage, PatientStorage>();
|
|
builder.Services.AddTransient<IRecipeStorage, RecipeStorage>();
|
|
builder.Services.AddTransient<IDiseaseStorage, DiseaseStorage>();
|
|
builder.Services.AddTransient<IProcedureStorage, ProcedureStorage>();
|
|
builder.Services.AddTransient<IMedicineStorage, MedicineStorage>();
|
|
|
|
// BusinessLogic services
|
|
builder.Services.AddTransient<IDoctorLogic, DoctorLogic>();
|
|
builder.Services.AddTransient<IPatientLogic, PatientLogic>();
|
|
builder.Services.AddTransient<IRecipeLogic, RecipeLogic>();
|
|
builder.Services.AddTransient<IDiseaseLogic, DiseaseLogic>();
|
|
builder.Services.AddTransient<IProcedureLogic, ProcedureLogic>();
|
|
builder.Services.AddTransient<IMedicineLogic, MedicineLogic>();
|
|
|
|
// BusinessLogic Reports services
|
|
builder.Services.AddTransient<IReportLogic, ReportLogic>();
|
|
builder.Services.AddTransient<AbstractSaveToWord, SaveToWord>();
|
|
builder.Services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
|
|
builder.Services.AddTransient<AbstractSaveToPdf, SaveToPdf>();
|
|
|
|
var app = builder.Build();
|
|
|
|
APIClient.Connect(builder.Configuration);
|
|
|
|
// Configure the HTTP request pipeline.
|
|
if (!app.Environment.IsDevelopment())
|
|
{
|
|
app.UseExceptionHandler("/Home/Error");
|
|
// The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
|
|
app.UseHsts();
|
|
}
|
|
|
|
app.UseHttpsRedirection();
|
|
app.UseStaticFiles();
|
|
|
|
app.UseRouting();
|
|
|
|
app.UseAuthorization();
|
|
|
|
app.MapControllerRoute(
|
|
name: "default",
|
|
pattern: "{controller=Home}/{action=Index}/{id?}");
|
|
|
|
app.Run();
|