PIbd-21_Blokhin_D.A._FishFa.../FishFactory/FishFactoryView/Program.cs

68 lines
3.1 KiB
C#
Raw Normal View History

2024-03-06 18:11:48 +04:00
using FishFactoryBusinessLogic.BusinessLogics;
using FishFactoryContracts.BusinessLogicsContracts;
using FishFactoryContracts.StoragesContracts;
2024-03-09 08:34:25 +04:00
using FishFactoryDatabaseImplement.Implements;
2024-04-04 15:51:08 +04:00
using FishFactoryBusinessLogic.OfficePackage.Implements;
using FishFactoryBusinessLogic.OfficePackage;
2024-03-06 18:11:48 +04:00
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging;
using System;
namespace FishFactoryView
{
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<MainForm>());
}
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<ICannedStorage, CannedStorage>();
2024-04-18 18:38:50 +04:00
services.AddTransient<IClientStorage, ClientStorage>();
2024-03-06 18:11:48 +04:00
services.AddTransient<IComponentLogic, ComponentLogic>();
services.AddTransient<IOrderLogic, OrderLogic>();
services.AddTransient<ICannedLogic, CannedLogic>();
2024-04-04 15:51:08 +04:00
services.AddTransient<IReportLogic, ReportLogic>();
2024-04-18 18:38:50 +04:00
services.AddTransient<IClientLogic, ClientLogic>();
2024-05-02 18:22:55 +04:00
services.AddTransient<IImplementerLogic, ImplementerLogic>();
services.AddTransient<IImplementerStorage, ImplementerStorage>();
services.AddTransient<IWorkProcess, WorkModeling>();
services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
2024-04-04 15:51:08 +04:00
services.AddTransient<AbstractSaveToWord, SaveToWord>();
services.AddTransient<AbstractSaveToPdf, SaveToPdf>();
2024-03-06 18:11:48 +04:00
services.AddTransient<MainForm>();
services.AddTransient<FormComponent>();
services.AddTransient<FormComponents>();
services.AddTransient<FormCreateOrder>();
services.AddTransient<FormCanned>();
services.AddTransient<FormCannedComponent>();
2024-04-18 18:38:50 +04:00
services.AddTransient<FormClients>();
2024-03-06 18:11:48 +04:00
services.AddTransient<FormCanneds>();
2024-04-04 15:51:08 +04:00
services.AddTransient<FormReportCannedComponents>();
services.AddTransient<FormReportOrders>();
2024-05-02 18:22:55 +04:00
services.AddTransient<FormImplementer>();
services.AddTransient<FormImplementers>();
}
2024-03-06 18:11:48 +04:00
}
}