2024-08-28 03:10:45 +04:00
|
|
|
using HotelBusinessLogic.BusinessLogics;
|
|
|
|
using LawCompanyBusinessLogic.BusinessLogics;
|
|
|
|
using LawCompanyBusinessLogic.OfficePackage.Implements;
|
|
|
|
using LawCompanyBusinessLogic.OfficePackage;
|
|
|
|
using LawCompanyContracts.BusinessLogicContracts;
|
2024-05-03 05:23:34 +04:00
|
|
|
using LawCompanyContracts.StoragesContracts;
|
|
|
|
using LawCompanyDatabaseImplement.Implements;
|
2024-05-03 04:07:14 +04:00
|
|
|
using LawCompanyGuarantorApp;
|
|
|
|
|
2024-05-02 16:33:19 +04:00
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
2024-08-28 03:10:45 +04:00
|
|
|
builder.Services.AddTransient<IReportGuarantorLogic, ReportLogicGuarantor>();
|
|
|
|
builder.Services.AddTransient<ICaseStorage, CaseStorage>();
|
|
|
|
builder.Services.AddTransient<IVisitStorage, VisitStorage>();
|
|
|
|
builder.Services.AddTransient<IClientStorage, ClientStorage>();
|
2024-05-03 05:23:34 +04:00
|
|
|
builder.Services.AddTransient<IHearingStorage, HearingStorage>();
|
|
|
|
builder.Services.AddTransient<ILawyerStorage, LawyerStorage>();
|
2024-08-28 03:10:45 +04:00
|
|
|
builder.Services.AddTransient<IConsultationStorage, ConsultationStorage>();
|
|
|
|
|
|
|
|
builder.Services.AddTransient<AbstractSaveToWordGuarantor, SaveToWordGuarantor>();
|
|
|
|
builder.Services.AddTransient<AbstractSaveToExcelGuarantor, SaveToExcelGuarantor>();
|
|
|
|
builder.Services.AddTransient<AbstractSaveToPdfGuarantor, SaveToPdfGuarantor>();
|
2024-05-02 16:33:19 +04:00
|
|
|
|
|
|
|
// Add services to the container.
|
|
|
|
builder.Services.AddControllersWithViews();
|
|
|
|
|
|
|
|
var app = builder.Build();
|
2024-05-03 01:37:16 +04:00
|
|
|
APIClient.Connect(builder.Configuration);
|
2024-05-02 16:33:19 +04:00
|
|
|
|
|
|
|
// Configure the HTTP request pipeline.
|
2024-08-28 03:10:45 +04:00
|
|
|
|
|
|
|
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();
|
|
|
|
|
2024-05-02 16:33:19 +04:00
|
|
|
|
|
|
|
app.UseHttpsRedirection();
|
|
|
|
app.UseStaticFiles();
|
|
|
|
|
|
|
|
app.UseRouting();
|
|
|
|
|
|
|
|
app.UseAuthorization();
|
|
|
|
|
|
|
|
app.MapControllerRoute(
|
|
|
|
name: "default",
|
2024-08-28 03:10:45 +04:00
|
|
|
pattern: "{controller=Home}/{action=Index}/{id?}");
|
2024-05-02 16:33:19 +04:00
|
|
|
|
|
|
|
app.Run();
|