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;
|
2024-04-20 14:07:58 +04:00
|
|
|
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>();
|
2024-04-20 14:07:58 +04:00
|
|
|
services.AddTransient<IClientStorage, ClientStorage>();
|
2024-02-11 18:24:54 +04:00
|
|
|
services.AddTransient<IComponentLogic, ComponentLogic>();
|
2024-04-20 14:07:58 +04:00
|
|
|
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>();
|
|
|
|
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>();
|
2024-04-20 14:07:58 +04:00
|
|
|
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-02-11 18:24:54 +04:00
|
|
|
}
|
2024-02-27 19:44:44 +04:00
|
|
|
|
2024-02-11 18:24:54 +04:00
|
|
|
}
|
|
|
|
}
|