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();
|
|
|
|
Application.Run(_serviceProvider.GetRequiredService<FormRegistrationWorker>());
|
|
|
|
}
|
|
|
|
private static void ConfigureServices(ServiceCollection services)
|
|
|
|
{
|
|
|
|
services.AddLogging(option =>
|
|
|
|
{
|
|
|
|
option.SetMinimumLevel(LogLevel.Information);
|
|
|
|
option.AddNLog("nlog.config");
|
|
|
|
});
|
|
|
|
//services.AddTransient<IComponentStorage, ComponentStorage>();
|
|
|
|
//services.AddTransient<IOrderStorage, OrderStorage>();
|
|
|
|
//services.AddTransient<IManufactureStorage, ManufactureStorage>();
|
|
|
|
//services.AddTransient<IClientStorage, ClientStorage>();
|
|
|
|
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>();
|
|
|
|
|
|
|
|
services.AddTransient<IWorkerStorage, WorkerStorage>();
|
|
|
|
|
|
|
|
services.AddTransient<FormRegistrationWorker>();
|
2023-04-01 14:40:28 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|