55 lines
1.7 KiB
C#
55 lines
1.7 KiB
C#
using BusinessLogic.BusinessLogic;
|
|
using Contracts.BusinessLogicsContracts;
|
|
using Contracts.StoragesContracts;
|
|
using DatabaseImplement.Implements;
|
|
using GuarantorAPP;
|
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
builder.Services.AddControllersWithViews();
|
|
|
|
builder.Logging.SetMinimumLevel(LogLevel.Trace);
|
|
builder.Logging.AddLog4Net("log4net.config");
|
|
|
|
builder.Services.AddTransient<IGuarantorStorage, GuarantorStorage>();
|
|
builder.Services.AddTransient<IWorkerStorage, WorkerStorage>();
|
|
builder.Services.AddTransient<IWorkshopStorage, WorkshopStorage>();
|
|
builder.Services.AddTransient<IMachineStorage, MachineStorage>();
|
|
builder.Services.AddTransient<IProductionStorage, ProductionStorage>();
|
|
builder.Services.AddTransient<IProductStorage, ProductStorage>();
|
|
builder.Services.AddTransient<IGuarantorLogic, GuarantorLogic>();
|
|
builder.Services.AddTransient<IWorkerLogic, WorkerLogic>();
|
|
builder.Services.AddTransient<IWorkshopLogic, WorkshopLogic>();
|
|
builder.Services.AddTransient<IMachineLogic, MachineLogic>();
|
|
builder.Services.AddTransient<IProductionLogic, ProductionLogic>();
|
|
builder.Services.AddTransient<IProductLogic, ProductLogic>();
|
|
builder.Services.AddTransient<GuarantorData>();
|
|
|
|
builder.Services.AddSession(options =>
|
|
{
|
|
options.IdleTimeout = TimeSpan.FromMinutes(30);
|
|
options.Cookie.HttpOnly = true;
|
|
options.Cookie.IsEssential = true;
|
|
});
|
|
|
|
var app = builder.Build();
|
|
|
|
if (!app.Environment.IsDevelopment())
|
|
{
|
|
app.UseExceptionHandler("/Home/Error");
|
|
app.UseHsts();
|
|
}
|
|
|
|
app.UseHttpsRedirection();
|
|
app.UseStaticFiles();
|
|
|
|
app.UseRouting();
|
|
|
|
app.UseSession();
|
|
app.UseAuthorization();
|
|
|
|
app.MapControllerRoute(
|
|
name: "default",
|
|
pattern: "{controller=Home}/{action=Index}/{id?}");
|
|
|
|
app.Run(); |