PIbd-22_Isaeva_A.I._FishFac.../FishFactory/Program.cs

68 lines
2.8 KiB
C#
Raw Normal View History

using FishFactory.Forms;
using FishFactoryContracts.BusinessLogicsContracts;
using FishFactoryBusinessLogic.BusinessLogic;
using FishFactoryContracts.StoragesContracts;
2024-05-12 12:56:51 +04:00
using FishFactoryDatabaseImplement.Implements;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging;
2024-04-10 19:04:19 +04:00
using FishFactoryBusinessLogic.OfficePackage;
using FishFactoryBusinessLogic.OfficePackage.Implements;
2024-02-05 19:09:54 +04:00
namespace FishFactory
{
internal static class Program
{
private static ServiceProvider? _serviceProvider;
public static ServiceProvider? ServiceProvider => _serviceProvider;
2024-02-05 19:09:54 +04:00
/// <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<ICannedStorage, CannedStorage>();
2024-05-12 12:56:51 +04:00
services.AddTransient<IClientStorage, ClientStorage>();
services.AddTransient<IComponentLogic, ComponentLogic>();
2024-05-12 12:56:51 +04:00
services.AddTransient<IClientLogic, ClientLogic>();
services.AddTransient<IOrderLogic, OrderLogic>();
services.AddTransient<ICannedLogic, CannedLogic>();
services.AddTransient<IReportLogic, ReportLogic>();
2024-05-12 12:56:51 +04:00
2024-04-10 19:04:19 +04:00
services.AddTransient<AbstractSaveToWord, SaveToWord>();
services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
services.AddTransient<AbstractSaveToPdf, SaveToPdf>();
2024-05-12 12:56:51 +04:00
services.AddTransient<FormMain>();
2024-05-12 12:56:51 +04:00
services.AddTransient<FormCanneds>();
services.AddTransient<FormComponents>();
2024-05-12 12:56:51 +04:00
services.AddTransient<FormClients>();
services.AddTransient<FormCanned>();
2024-05-12 12:56:51 +04:00
services.AddTransient<FormComponent>();
services.AddTransient<FormCreateOrder>();
services.AddTransient<FormCannedComponent>();
services.AddTransient<FormReportOrders>();
services.AddTransient<FormReportCannedComponents>();
2024-02-05 19:09:54 +04:00
}
}
}