PIbd-23-Nasyrov-A.G.-Flower.../ProjectFlowerShop/Program.cs

66 lines
2.7 KiB
C#
Raw Normal View History

2024-02-12 17:52:44 +04:00
using FlowerShopBusinessLogic.BusinessLogic;
using FlowerShopContracts.BusinessLogicsContracts;
using FlowerShopContracts.StoragesContracts;
2024-03-12 21:47:28 +04:00
using FlowerShopDatabaseImplement.Implements;
using ProjectFlowerShop;
2024-02-12 17:52:44 +04:00
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging;
using System;
using System.Drawing;
using FlowerShopBusinessLogic;
using FlowerShopBusinessLogic.OfficePackage.Implements;
using FlowerShopBusinessLogic.OfficePackage;
2024-02-12 17:52:44 +04:00
2024-02-08 13:26:42 +04:00
namespace ProjectFlowerShop
{
internal static class Program
{
2024-02-12 17:52:44 +04:00
private static ServiceProvider? _serviceProvider;
public static ServiceProvider? ServiceProvider => _serviceProvider;
2024-02-08 13:26:42 +04:00
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
2024-02-12 17:52:44 +04:00
var services = new ServiceCollection();
ConfigureServices(services);
_serviceProvider = services.BuildServiceProvider();
Application.Run(_serviceProvider.GetRequiredService<MainForm>());
2024-02-08 13:26:42 +04:00
}
2024-02-12 17:52:44 +04:00
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<IFlowerStorage, FlowerStorage>();
2024-04-07 14:27:09 +04:00
services.AddTransient<IClientStorage, ClientStorage>();
2024-02-12 17:52:44 +04:00
services.AddTransient<IComponentLogic, ComponentLogic>();
services.AddTransient<IOrderLogic, OrderLogic>();
services.AddTransient<IFlowerLogic, FlowerLogic>();
services.AddTransient<IReportLogic, ReportLogic>();
2024-04-07 14:27:09 +04:00
services.AddTransient<IClientLogic, ClientLogic>();
2024-02-12 17:52:44 +04:00
services.AddTransient<MainForm>();
services.AddTransient<ComponentForm>();
services.AddTransient<FormComponents>();
services.AddTransient<FormCreateOrder>();
2024-02-28 14:41:07 +04:00
services.AddTransient<FormFlower>();
2024-02-27 17:21:18 +04:00
services.AddTransient<FormFlowerComponent>();
2024-02-12 17:52:44 +04:00
services.AddTransient<FormFlowers>();
2024-04-07 14:10:31 +04:00
services.AddTransient<FormClients>();
services.AddTransient<FormReportFlowerComponent>();
services.AddTransient<FormReportOrders>();
services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
services.AddTransient<AbstractSaveToWord, SaveToWord>();
services.AddTransient<AbstractSaveToPdf, SaveToPdf>();
2024-02-12 17:52:44 +04:00
}
2024-02-08 13:26:42 +04:00
}
2024-02-12 17:52:44 +04:00
}