2023-05-25 22:31:46 +04:00
|
|
|
using BlacksmithWorkshopBusinessLogic.OfficePackage;
|
|
|
|
using BlacksmithWorkshopBusinessLogic.OfficePackage.Implements;
|
2023-05-22 22:44:51 +04:00
|
|
|
using CarServiceBusinessLogic.BusinessLogics;
|
|
|
|
using CarServiceContracts.BusinessLogicsContracts;
|
|
|
|
using CarServiceContracts.StorageContracts;
|
|
|
|
using CarServiceDatabase.Implements;
|
|
|
|
|
2023-04-08 19:51:41 +04:00
|
|
|
var builder = WebApplication.CreateBuilder(args);
|
|
|
|
|
|
|
|
// Add services to the container.
|
2023-05-22 22:44:51 +04:00
|
|
|
builder.Logging.SetMinimumLevel(LogLevel.Trace);
|
|
|
|
builder.Logging.AddLog4Net("log4net.config");
|
2023-04-08 19:51:41 +04:00
|
|
|
builder.Services.AddControllersWithViews();
|
2023-05-22 22:44:51 +04:00
|
|
|
builder.Services.AddTransient<IWorkLogic, WorkLogic>();
|
|
|
|
builder.Services.AddTransient<IWorkStorage, WorkStorage>();
|
2023-05-23 00:33:16 +04:00
|
|
|
builder.Services.AddTransient<IWorkerLogic, WorkerLogic>();
|
|
|
|
builder.Services.AddTransient<IWorkerStorage, WorkerStorage>();
|
2023-05-25 12:51:38 +04:00
|
|
|
builder.Services.AddTransient<IItemLogic, ItemLogic>();
|
|
|
|
builder.Services.AddTransient<IItemStorage, ItemStorage>();
|
2023-05-25 13:31:55 +04:00
|
|
|
builder.Services.AddTransient<IRepairRequestLogic, RepairRequestLogic>();
|
|
|
|
builder.Services.AddTransient<IRepairRequestStorage, RepairRequestStorage>();
|
2023-05-25 16:55:46 +04:00
|
|
|
builder.Services.AddTransient<IItemForRepairLogic, ItemForRepairLogic>();
|
|
|
|
builder.Services.AddTransient<IItemForRepairStorage, ItemForRepairStorage>();
|
|
|
|
builder.Services.AddTransient<IWorkInRequestLogic, WorkInRequestLogic>();
|
|
|
|
builder.Services.AddTransient<IWorkInRequestStorage, WorkInRequestStorage>();
|
2023-04-08 19:51:41 +04:00
|
|
|
|
2023-05-25 20:53:47 +04:00
|
|
|
builder.Services.AddTransient<IWorkPaymentStorage, WorkPaymentStorage>();
|
|
|
|
builder.Services.AddTransient<IReportLogic, ReportLogic>();
|
|
|
|
|
2023-05-25 22:31:46 +04:00
|
|
|
builder.Services.AddTransient<AbstractSaveToWord, SaveToWord>();
|
2023-05-25 23:14:32 +04:00
|
|
|
builder.Services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
|
2023-05-25 23:49:07 +04:00
|
|
|
builder.Services.AddTransient<AbstractSaveToPdf, SaveToPdf>();
|
2023-05-25 20:53:47 +04:00
|
|
|
|
2023-04-08 19:51:41 +04:00
|
|
|
var app = builder.Build();
|
|
|
|
|
|
|
|
// 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();
|