2024-02-06 12:37:25 +04:00
|
|
|
using GiftShopBusinessLogic.BusinessLogics;
|
2024-04-07 10:17:23 +04:00
|
|
|
using GiftShopBusinessLogic.OfficePackage.Implements;
|
|
|
|
using GiftShopBusinessLogic.OfficePackage;
|
2024-02-06 12:37:25 +04:00
|
|
|
using GiftShopContracts.BusinessLogicsContracts;
|
|
|
|
using GiftShopContracts.StoragesContracts;
|
2024-04-07 10:15:40 +04:00
|
|
|
using GiftShopDatabaseImplement.Implements;
|
2024-02-06 12:37:25 +04:00
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
using NLog.Extensions.Logging;
|
|
|
|
|
|
|
|
namespace GiftShopView
|
|
|
|
{
|
|
|
|
internal static class Program
|
|
|
|
{
|
|
|
|
private static ServiceProvider? _serviceProvider;
|
|
|
|
public static ServiceProvider? ServiceProvider => _serviceProvider;
|
|
|
|
[STAThread]
|
|
|
|
static void Main()
|
|
|
|
{
|
|
|
|
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<IGiftStorage, GiftStorage>();
|
2024-04-07 10:17:23 +04:00
|
|
|
|
2024-02-06 12:37:25 +04:00
|
|
|
services.AddTransient<IComponentLogic, ComponentLogic>();
|
|
|
|
services.AddTransient<IOrderLogic, OrderLogic>();
|
|
|
|
services.AddTransient<IGiftLogic, GiftLogic>();
|
2024-04-07 10:17:23 +04:00
|
|
|
services.AddTransient<IReportLogic, ReportLogic>();
|
|
|
|
|
|
|
|
services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
|
|
|
|
services.AddTransient<AbstractSaveToWord, SaveToWord>();
|
|
|
|
services.AddTransient<AbstractSaveToPdf, SaveToPdf>();
|
|
|
|
|
2024-02-06 12:37:25 +04:00
|
|
|
services.AddTransient<FormMain>();
|
|
|
|
services.AddTransient<FormComponent>();
|
|
|
|
services.AddTransient<FormComponents>();
|
|
|
|
services.AddTransient<FormCreateOrder>();
|
|
|
|
services.AddTransient<FormGift>();
|
|
|
|
services.AddTransient<FormGiftComponent>();
|
|
|
|
services.AddTransient<FormGifts>();
|
2024-04-07 10:17:23 +04:00
|
|
|
services.AddTransient<FormReportOrders>();
|
|
|
|
services.AddTransient<FormReportGiftComponents>();
|
2024-02-06 12:37:25 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|