PIbd-22_Petrushin_E.A._LawFirm/LawFirm/LawFirmView/Program.cs

70 lines
3.2 KiB
C#
Raw Normal View History

2024-02-27 19:44:44 +04:00
using AbstractLawFirmBusinessLogic.BusinessLogic;
2024-04-07 22:21:31 +04:00
using AbstractLawFirmBusinessLogic.OfficePackage.Implements;
using AbstractLawFirmBusinessLogic.OfficePackage;
2024-02-27 19:44:44 +04:00
using AbstractLawFirmContracts.BusinessLogicsContracts;
using AbstractLawFirmContracts.StoragesContracts;
2024-03-26 00:07:11 +04:00
using AbstractLawFirmDatabaseImplement.Implements;
2024-02-11 18:24:54 +04:00
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging;
2024-02-27 19:44:44 +04:00
using System;
using AbstractLawFirmDataBaseImplement.Implements;
2024-02-11 18:24:54 +04:00
2024-02-14 00:11:21 +04:00
namespace LawFirmView
2024-02-11 18:24:54 +04:00
{
internal static class Program
{
private static ServiceProvider? _serviceProvider;
public static ServiceProvider? ServiceProvider => _serviceProvider;
/// <summary>
2024-02-27 19:44:44 +04:00
/// The main entry point for the application.
2024-02-11 18:24:54 +04:00
/// </summary>
[STAThread]
static void Main()
{
2024-02-27 19:44:44 +04:00
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
2024-02-11 18:24:54 +04:00
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>();
2024-02-14 00:11:21 +04:00
services.AddTransient<IDocumentStorage, DocumentStorage>();
services.AddTransient<IClientStorage, ClientStorage>();
2024-05-04 20:44:03 +04:00
services.AddTransient<IImplementerStorage, ImplementerStorage>();
2024-02-11 18:24:54 +04:00
services.AddTransient<IComponentLogic, ComponentLogic>();
services.AddTransient<IClientLogic, ClientLogic>();
2024-02-11 18:24:54 +04:00
services.AddTransient<IOrderLogic, OrderLogic>();
2024-02-14 00:11:21 +04:00
services.AddTransient<IDocumentLogic, DocumentLogic>();
2024-04-07 22:21:31 +04:00
services.AddTransient<IReportLogic, ReportLogic>();
2024-05-04 20:44:03 +04:00
services.AddTransient<IImplementerLogic, ImplementerLogic>();
services.AddTransient<IWorkProcess, WorkModeling>();
2024-04-07 22:21:31 +04:00
services.AddTransient<AbstractSaveToWord, SaveToWord>();
services.AddTransient<AbstractSaveToExcel, SaveToExcel>();
services.AddTransient<AbstractSaveToPdf, SaveToPdf>();
2024-02-11 18:24:54 +04:00
services.AddTransient<FormMain>();
services.AddTransient<FormComponent>();
services.AddTransient<FormComponents>();
services.AddTransient<FormClients>();
2024-02-11 18:24:54 +04:00
services.AddTransient<FormCreateOrder>();
2024-02-14 00:11:21 +04:00
services.AddTransient<FormDocument>();
services.AddTransient<FormDocumentComponent>();
services.AddTransient<FormDocuments>();
2024-04-07 22:21:31 +04:00
services.AddTransient<FormReportDocumentComponents>();
services.AddTransient<FormReportOrders>();
2024-05-05 15:38:08 +04:00
services.AddTransient<<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>>();
services.AddTransient<<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>>();
2024-02-11 18:24:54 +04:00
}
2024-02-27 19:44:44 +04:00
2024-02-11 18:24:54 +04:00
}
}