2024-05-02 17:12:12 +04:00
|
|
|
using LawCompanyExecutorApp;
|
|
|
|
using LawCompanyContracts.BindingModels;
|
|
|
|
using LawCompanyContracts.StoragesContracts;
|
|
|
|
using LawCompanyContracts.ViewModels;
|
|
|
|
using LawCompanyDatabaseImplement.Implements;
|
|
|
|
using LawCompanyDataModels.Models;
|
2024-05-27 02:45:38 +04:00
|
|
|
using LawCompanyBusinessLogic.OfficePackage;
|
|
|
|
using LawCompanyBusinessLogic.OfficePackage.Implements;
|
|
|
|
using LawCompanyContracts.BusinessLogicContracts;
|
|
|
|
using HotelBusinessLogic.BusinessLogics;
|
|
|
|
using LawCompanyBusinessLogic.BusinessLogics;
|
2024-05-02 17:12:12 +04:00
|
|
|
|
2024-05-02 16:33:19 +04:00
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
2024-05-27 02:45:38 +04:00
|
|
|
builder.Services.AddTransient<IReportExecutorLogic, ReportLogicExecutor>();
|
|
|
|
builder.Services.AddTransient<IReportGuarantorLogic, ReportLogicGuarantor>();
|
2024-05-02 17:12:12 +04:00
|
|
|
builder.Services.AddTransient<ICaseStorage, CaseStorage>();
|
|
|
|
builder.Services.AddTransient<IVisitStorage, VisitStorage>();
|
|
|
|
builder.Services.AddTransient<IClientStorage, ClientStorage>();
|
2024-05-27 02:45:38 +04:00
|
|
|
builder.Services.AddTransient<IHearingStorage, HearingStorage>();
|
|
|
|
builder.Services.AddTransient<ILawyerStorage, LawyerStorage>();
|
|
|
|
builder.Services.AddTransient<IConsultationStorage, ConsultationStorage>();
|
2024-05-02 16:33:19 +04:00
|
|
|
|
2024-05-27 02:45:38 +04:00
|
|
|
builder.Services.AddTransient<AbstractSaveToWordExecutor, SaveToWordExecutor>();
|
|
|
|
builder.Services.AddTransient<AbstractSaveToExcelExecutor, SaveToExcelExecutor>();
|
|
|
|
builder.Services.AddTransient<AbstractSaveToPdfExecutor, SaveToPdfExecutor>();
|
2024-05-02 16:33:19 +04:00
|
|
|
// Add services to the container.
|
|
|
|
builder.Services.AddControllersWithViews();
|
|
|
|
|
|
|
|
var app = builder.Build();
|
2024-05-02 17:12:12 +04:00
|
|
|
APIClient.Connect(builder.Configuration);
|
2024-05-02 16:33:19 +04:00
|
|
|
|
|
|
|
// Configure the HTTP request pipeline.
|
2024-05-27 02:45:38 +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",
|
|
|
|
pattern: "{controller=Home}/{action=Index}/{id?}");
|
|
|
|
|
|
|
|
app.Run();
|