2024-02-24 01:57:59 +04:00
|
|
|
using MotorPlantView.Forms;
|
|
|
|
using MotorPlantContracts.BusinessLogicsContracts;
|
|
|
|
using MotorPlantContracts.StoragesContracts;
|
2024-03-22 22:40:04 +04:00
|
|
|
using MotorPlantDatabaseImplement.Implements;
|
2024-02-24 01:57:59 +04:00
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
using NLog.Extensions.Logging;
|
|
|
|
using MotorPlantBusinessLogic.BusinessLogics;
|
|
|
|
using System;
|
2024-04-04 00:19:40 +04:00
|
|
|
using MotorPlantBusinessLogic.BusinessLogic;
|
|
|
|
using MotorPlantBusinessLogic.OfficePackage.Implements;
|
|
|
|
using MotorPlantBusinessLogic.OfficePackage;
|
2024-04-04 14:56:17 +04:00
|
|
|
using System.Text;
|
2024-02-24 01:57:59 +04:00
|
|
|
|
2024-02-23 19:51:52 +04:00
|
|
|
namespace MotorPlantView
|
|
|
|
{
|
|
|
|
internal static class Program
|
|
|
|
{
|
2024-02-24 01:57:59 +04:00
|
|
|
private static ServiceProvider? _serviceProvider;
|
|
|
|
public static ServiceProvider? ServiceProvider => _serviceProvider;
|
2024-02-23 19:51:52 +04:00
|
|
|
/// <summary>
|
|
|
|
/// The main entry point for the application.
|
|
|
|
/// </summary>
|
|
|
|
[STAThread]
|
|
|
|
static void Main()
|
|
|
|
{
|
2024-04-04 14:56:17 +04:00
|
|
|
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
|
2024-02-23 19:51:52 +04:00
|
|
|
// To customize application configuration such as set high DPI settings or default font,
|
|
|
|
// see https://aka.ms/applicationconfiguration.
|
|
|
|
ApplicationConfiguration.Initialize();
|
2024-02-24 01:57:59 +04:00
|
|
|
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>();
|
|
|
|
services.AddTransient<IComponentLogic, ComponentLogic>();
|
|
|
|
services.AddTransient<IOrderLogic, OrderLogic>();
|
|
|
|
services.AddTransient<IEngineLogic, EngineLogic>();
|
2024-04-04 00:19:40 +04:00
|
|
|
services.AddTransient<IReportLogic, ReportLogic>();
|
|
|
|
|
|
|
|
services.AddTransient<AbstractSaveToWord, SaveToWord>();
|
|
|
|
services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
|
|
|
|
services.AddTransient<AbstractSaveToPdf, SaveToPdf>();
|
2024-02-24 01:57:59 +04:00
|
|
|
services.AddTransient<FormMain>();
|
|
|
|
services.AddTransient<FormComponent>();
|
|
|
|
services.AddTransient<FormComponents>();
|
|
|
|
services.AddTransient<FormCreateOrder>();
|
|
|
|
services.AddTransient<FormEngine>();
|
|
|
|
services.AddTransient<FormEngineComponent>();
|
|
|
|
services.AddTransient<FormEngines>();
|
2024-04-04 00:19:40 +04:00
|
|
|
services.AddTransient<FormReportEngineComponents>();
|
|
|
|
services.AddTransient<FormReportOrders>();
|
2024-02-23 19:51:52 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|