PIbd-23_Yakobchuk_S.V._Moto.../MotorPlant/MotorPlantView/Program.cs

67 lines
2.8 KiB
C#
Raw Normal View History

2024-04-14 15:16:13 +04:00
using MotorPlantContracts.BusinessLogicsContracts;
using MotorPlantContracts.StoragesContracts;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging;
using MotorPlantBusinessLogic.BusinessLogics;
2024-05-11 10:55:49 +04:00
using MotorPlantDatabaseImplement.Implements;
2024-05-11 11:37:25 +04:00
using MotorPlantBusinessLogic.OfficePackage.Implements;
using MotorPlantBusinessLogic.OfficePackage;
using MotorPlantBusinessLogic;
2024-05-11 18:45:14 +04:00
using MotorPlantBusinessLogic.BusinessLogic;
2024-04-14 15:16:13 +04:00
2024-04-14 15:23:03 +04:00
namespace MotorPlantView.Forms
2024-04-14 15:16:13 +04:00
{
internal static class Program
{
private static ServiceProvider? _serviceProvider;
public static ServiceProvider? ServiceProvider => _serviceProvider;
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
var services = new ServiceCollection();
ConfigureServices(services);
_serviceProvider = services.BuildServiceProvider();
Application.Run(_serviceProvider.GetRequiredService<FormMain>());
}
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<IEngineStorage, EngineStorage>();
2024-04-14 15:23:03 +04:00
2024-04-14 15:16:13 +04:00
services.AddTransient<IComponentLogic, ComponentLogic>();
services.AddTransient<IOrderLogic, OrderLogic>();
services.AddTransient<IEngineLogic, EngineLogic>();
2024-05-11 11:37:25 +04:00
services.AddTransient<IReportLogic, ReportLogic>();
2024-05-11 18:45:14 +04:00
services.AddTransient<IClientLogic, ClientLogic>();
services.AddTransient<IClientStorage, ClientStorage>();
2024-04-14 15:23:03 +04:00
2024-05-11 18:45:14 +04:00
services.AddTransient<FormMain>();
2024-04-14 15:16:13 +04:00
services.AddTransient<FormComponent>();
services.AddTransient<FormComponents>();
services.AddTransient<FormCreateOrder>();
services.AddTransient<FormEngine>();
services.AddTransient<FormEngineComponent>();
services.AddTransient<FormEngines>();
2024-05-11 11:37:25 +04:00
services.AddTransient<FormReportEngineComponents>();
services.AddTransient<FormReportOrders>();
services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
services.AddTransient<AbstractSaveToWord, SaveToWord>();
services.AddTransient<AbstractSaveToPdf, SaveToPdf>();
2024-05-11 18:45:14 +04:00
services.AddTransient<FormClients>();
}
2024-04-14 15:16:13 +04:00
}
}