PIbd-23_Abazov_A.A._Constru.../ConstructionCompany/ConstructionCompanyView/Program.cs

90 lines
4.6 KiB
C#
Raw Normal View History

using ConstructionCompanyBusinessLogic.BusinessLogics;
using ConstructionCompanyContracts.BusinessLogicContracts;
using ConstructionCompanyContracts.StorageContracts;
using ConstructionCompanyMongoDBImplement.Implements;
using ConstructionCompanyPsqlImplement.Implements;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging;
2023-03-26 14:17:21 +04:00
namespace ConstructionCompanyView
{
internal static class Program
{
private static ServiceProvider? _serviceProvider;
public static ServiceProvider? ServiceProvider => _serviceProvider;
2023-03-26 14:17:21 +04:00
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
var services = new ServiceCollection();
ConfigureServices(services);
_serviceProvider = services.BuildServiceProvider();
Application.Run(_serviceProvider.GetRequiredService<FormLogin>());
}
private static void ConfigureServices(ServiceCollection services)
{
services.AddLogging(option =>
{
option.SetMinimumLevel(LogLevel.Information);
option.AddNLog("nlogConstruction.config");
});
if (Properties.Settings.Default.bdType == "postgres") addPgsql(services);
else addMongoDB(services);
2023-04-09 18:05:24 +04:00
services.AddTransient<IMaterialLogic, MaterialLogic>();
2023-04-09 18:05:24 +04:00
services.AddTransient<IPositionLogic, PositionLogic>();
services.AddTransient<IEmployeeLogic, EmployeeLogic>();
services.AddTransient<IOrderLogic, OrderLogic>();
services.AddTransient<IEmployeeOrderLogic, EmployeeOrderLogic>();
services.AddTransient<IMaterialOrderLogic, MaterialOrderLogic>();
2023-04-10 14:24:22 +04:00
services.AddTransient<IRandomGeneratorLogic, RandomGeneratorLogic>();
2023-04-09 18:05:24 +04:00
services.AddTransient<FormMaterials>();
services.AddTransient<FormMaterial>();
services.AddTransient<FormLogin>();
services.AddTransient<FormWarehouseMenu>();
services.AddTransient<FormManagerMenu>();
services.AddTransient<FormOrders>();
services.AddTransient<FormOrder>();
services.AddTransient<FormMaterialOrders>();
services.AddTransient<FormMaterialOrder>();
services.AddTransient<FormBrigadeMenu>();
services.AddTransient<FormPositions>();
services.AddTransient<FormPosition>();
services.AddTransient<FormEmployees>();
services.AddTransient<FormEmployee>();
services.AddTransient<FormEmployeeOrders>();
services.AddTransient<FormEmployeeOrder>();
2023-04-21 19:48:18 +04:00
services.AddTransient<FormWarehouseReport>();
2023-04-23 18:04:13 +04:00
services.AddTransient<FormBrigadeReport>();
2023-03-26 14:17:21 +04:00
}
private static void addPgsql(ServiceCollection services)
{
services.AddTransient<IMaterialStorage, ConstructionCompanyPsqlImplement.Implements.MaterialStorage>();
services.AddTransient<IPositionStorage, ConstructionCompanyPsqlImplement.Implements.PositionStorage>();
services.AddTransient<IEmployeeStorage, ConstructionCompanyPsqlImplement.Implements.EmployeeStorage>();
services.AddTransient<IOrderStorage, ConstructionCompanyPsqlImplement.Implements.OrderStorage>();
services.AddTransient<IEmployeeOrderStorage, ConstructionCompanyPsqlImplement.Implements.EmployeeOrderStorage>();
services.AddTransient<IMaterialOrderStorage, ConstructionCompanyPsqlImplement.Implements.MaterialOrderStorage>();
}
private static void addMongoDB(ServiceCollection services)
{
services.AddTransient<IMaterialStorage, ConstructionCompanyMongoDBImplement.Implements.MaterialStorage>();
services.AddTransient<IPositionStorage, ConstructionCompanyMongoDBImplement.Implements.PositionStorage>();
services.AddTransient<IEmployeeStorage, ConstructionCompanyMongoDBImplement.Implements.EmployeeStorage>();
services.AddTransient<IOrderStorage, ConstructionCompanyMongoDBImplement.Implements.OrderStorage>();
services.AddTransient<IEmployeeOrderStorage, ConstructionCompanyMongoDBImplement.Implements.EmployeeOrderStorage>();
services.AddTransient<IMaterialOrderStorage, ConstructionCompanyMongoDBImplement.Implements.MaterialOrderStorage>();
}
2023-03-26 14:17:21 +04:00
}
}