2023-04-04 22:42:28 +04:00
|
|
|
using CarServiceBusinessLogic.BusinessLogics;
|
|
|
|
using CarServiceContracts.BusinessLogicsContracts;
|
|
|
|
using CarServiceContracts.StorageContracts;
|
|
|
|
using CarServiceDatabase.Implements;
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
using NLog.Extensions.Logging;
|
|
|
|
|
2023-04-01 14:40:28 +04:00
|
|
|
namespace CarServiceView
|
|
|
|
{
|
|
|
|
internal static class Program
|
|
|
|
{
|
2023-04-04 22:42:28 +04:00
|
|
|
private static ServiceProvider? _serviceProvider;
|
|
|
|
public static ServiceProvider? ServiceProvider => _serviceProvider;
|
2023-04-01 14:40:28 +04:00
|
|
|
[STAThread]
|
|
|
|
static void Main()
|
|
|
|
{
|
|
|
|
ApplicationConfiguration.Initialize();
|
2023-04-04 22:42:28 +04:00
|
|
|
var services = new ServiceCollection();
|
|
|
|
ConfigureServices(services);
|
|
|
|
_serviceProvider = services.BuildServiceProvider();
|
2023-04-07 19:57:21 +04:00
|
|
|
var _reportLogic = _serviceProvider.GetRequiredService<IReportLogic>();
|
|
|
|
var list = _reportLogic.GetRequestsByWorks(new() { SelectedWorks = new() { 1 } });
|
2023-04-07 08:22:21 +04:00
|
|
|
Application.Run(_serviceProvider.GetRequiredService<FormItemForRepairTest>());
|
2023-04-04 22:42:28 +04:00
|
|
|
}
|
|
|
|
private static void ConfigureServices(ServiceCollection services)
|
|
|
|
{
|
|
|
|
services.AddLogging(option =>
|
|
|
|
{
|
|
|
|
option.SetMinimumLevel(LogLevel.Information);
|
|
|
|
option.AddNLog("nlog.config");
|
|
|
|
});
|
|
|
|
services.AddTransient<ICustomerLogic, CustomerLogic>();
|
|
|
|
services.AddTransient<IItemForRepairLogic, ItemForRepairLogic>();
|
|
|
|
services.AddTransient<IItemLogic, ItemLogic>();
|
|
|
|
services.AddTransient<IRepairRequestLogic, RepairRequestLogic>();
|
|
|
|
services.AddTransient<IVehicleLogic, VehicleLogic>();
|
|
|
|
services.AddTransient<IWorkerLogic, WorkerLogic>();
|
|
|
|
services.AddTransient<IWorkInRequestLogic, WorkInRequestLogic>();
|
|
|
|
services.AddTransient<IWorkLogic, WorkLogic>();
|
|
|
|
services.AddTransient<IWorkPaymentLogic, WorkPaymentLogic>();
|
2023-04-07 19:57:21 +04:00
|
|
|
services.AddTransient<IReportLogic, ReportLogic>();
|
2023-04-04 22:42:28 +04:00
|
|
|
|
|
|
|
services.AddTransient<IWorkerStorage, WorkerStorage>();
|
2023-04-05 21:03:41 +04:00
|
|
|
services.AddTransient<IWorkStorage, WorkStorage>();
|
2023-04-05 22:15:31 +04:00
|
|
|
services.AddTransient<IItemStorage, ItemStorage>();
|
2023-04-05 23:57:45 +04:00
|
|
|
services.AddTransient<IItemForRepairStorage, ItemForRepairStorage>();
|
|
|
|
services.AddTransient<IRepairRequestStorage, RepairRequestStorage>();
|
2023-04-04 22:42:28 +04:00
|
|
|
|
|
|
|
services.AddTransient<FormRegistrationWorker>();
|
2023-04-05 21:03:41 +04:00
|
|
|
services.AddTransient<FormWorkTest>();
|
|
|
|
services.AddTransient<FormAddWorkTest>();
|
2023-04-05 22:15:31 +04:00
|
|
|
services.AddTransient<FormItemTest>();
|
|
|
|
services.AddTransient<FormAddItemTest>();
|
2023-04-05 23:57:45 +04:00
|
|
|
services.AddTransient<FormItemForRepairTest>();
|
|
|
|
services.AddTransient<FormAddItemForRepairTest>();
|
2023-04-06 22:44:17 +04:00
|
|
|
services.AddTransient<FormUpdateItemForRepairTest>();
|
2023-04-01 14:40:28 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|