2024-05-25 23:29:08 +04:00
|
|
|
using HospitalBusinessLogics.BusinessLogics;
|
2024-05-27 01:52:34 +04:00
|
|
|
using HospitalBusinessLogics.MailWorker;
|
2024-05-25 23:29:08 +04:00
|
|
|
using HospitalBusinessLogics.OfficePackage;
|
|
|
|
using HospitalBusinessLogics.OfficePackage.Implements;
|
2024-05-27 01:52:34 +04:00
|
|
|
using HospitalContracts.BindingModels;
|
2024-05-25 23:29:08 +04:00
|
|
|
using HospitalContracts.BusinessLogicsContracts;
|
|
|
|
using HospitalContracts.StoragesContracts;
|
|
|
|
using HospitalDatabaseImplement.Implements;
|
2024-04-29 00:38:02 +04:00
|
|
|
using HospitalWebApp;
|
2024-05-27 22:25:54 +04:00
|
|
|
using NLog.Extensions.Logging;
|
2024-04-29 00:38:02 +04:00
|
|
|
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
|
|
|
|
// Add services to the container.
|
|
|
|
builder.Services.AddControllersWithViews();
|
|
|
|
|
2024-05-27 22:25:54 +04:00
|
|
|
// Logger service
|
|
|
|
builder.Logging.SetMinimumLevel(LogLevel.Trace);
|
|
|
|
builder.Logging.AddNLog("nlog.config");
|
|
|
|
|
2024-05-25 23:29:08 +04:00
|
|
|
// 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>();
|
2024-05-27 01:52:34 +04:00
|
|
|
builder.Services.AddSingleton<AbstractMailWorker, MailKitWorker>();
|
2024-05-25 23:29:08 +04:00
|
|
|
|
|
|
|
// BusinessLogic Reports services
|
|
|
|
builder.Services.AddTransient<IReportLogic, ReportLogic>();
|
|
|
|
builder.Services.AddTransient<AbstractSaveToWord, SaveToWord>();
|
|
|
|
builder.Services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
|
|
|
|
builder.Services.AddTransient<AbstractSaveToPdf, SaveToPdf>();
|
2024-04-29 00:38:02 +04:00
|
|
|
|
2024-05-25 23:29:08 +04:00
|
|
|
var app = builder.Build();
|
2024-04-29 00:38:02 +04:00
|
|
|
|
2024-05-27 01:52:34 +04:00
|
|
|
// Configuration for MailService
|
|
|
|
var mailSender = app.Services.GetService<AbstractMailWorker>();
|
|
|
|
mailSender?.MailConfig(new MailConfigBindingModel
|
|
|
|
{
|
|
|
|
MailLogin = builder.Configuration?.GetSection("MailLogin")?.Value?.ToString() ?? string.Empty,
|
|
|
|
MailPassword = builder.Configuration?.GetSection("MailPassword")?.Value?.ToString() ?? string.Empty,
|
|
|
|
SmtpClientHost = builder.Configuration?.GetSection("SmtpClientHost")?.Value?.ToString() ?? string.Empty,
|
|
|
|
SmtpClientPort = Convert.ToInt32(builder.Configuration?.GetSection("SmtpClientPort")?.Value?.ToString()),
|
|
|
|
PopHost = builder.Configuration?.GetSection("PopHost")?.Value?.ToString() ?? string.Empty,
|
|
|
|
PopPort = Convert.ToInt32(builder.Configuration?.GetSection("PopPort")?.Value?.ToString())
|
|
|
|
});
|
|
|
|
|
2024-04-29 00:38:02 +04:00
|
|
|
// 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();
|