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

53 lines
2.2 KiB
C#
Raw Normal View History

2024-02-27 19:44:44 +04:00
using AbstractLawFirmBusinessLogic.BusinessLogic;
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-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-02-11 18:24:54 +04:00
services.AddTransient<IComponentLogic, ComponentLogic>();
services.AddTransient<IOrderLogic, OrderLogic>();
2024-02-14 00:11:21 +04:00
services.AddTransient<IDocumentLogic, DocumentLogic>();
2024-02-11 18:24:54 +04:00
services.AddTransient<FormMain>();
services.AddTransient<FormComponent>();
services.AddTransient<FormComponents>();
services.AddTransient<FormCreateOrder>();
2024-02-14 00:11:21 +04:00
services.AddTransient<FormDocument>();
services.AddTransient<FormDocumentComponent>();
services.AddTransient<FormDocuments>();
2024-02-11 18:24:54 +04:00
}
2024-02-27 19:44:44 +04:00
2024-02-11 18:24:54 +04:00
}
}