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-05-03 05:23:34 +04:00
|
|
|
builder.Services.AddTransient<IConsultationStorage, ConsultationStorage>();
|
|
|
|
builder.Services.AddTransient<IHearingStorage, HearingStorage>();
|
|
|
|
builder.Services.AddTransient<ILawyerStorage, LawyerStorage>();
|
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.
|
|
|
|
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",
|
2024-05-03 01:37:16 +04:00
|
|
|
pattern: "{controller=Home}/{action=EnterGuarantor}/{id?}");
|
2024-05-02 16:33:19 +04:00
|
|
|
|
|
|
|
app.Run();
|