2023-02-05 21:54:36 +04:00
|
|
|
using JewelryStoreContracts.BusinessLogicsContracts;
|
|
|
|
using JewelryStoreContracts.StoragesContracts;
|
|
|
|
using JewelryStoreBusinessLogic.BusinessLogics;
|
2023-02-19 21:32:04 +04:00
|
|
|
using JewelryStoreFileImplement.Implements;
|
2023-02-05 21:54:36 +04:00
|
|
|
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using System.Drawing;
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
using NLog.Extensions.Logging;
|
|
|
|
|
|
|
|
|
2023-02-05 17:01:57 +04:00
|
|
|
namespace JewelryStore
|
|
|
|
{
|
|
|
|
internal static class Program
|
|
|
|
{
|
2023-02-05 21:54:36 +04:00
|
|
|
private static ServiceProvider? _serviceProvider;
|
|
|
|
public static ServiceProvider? ServiceProvider => _serviceProvider;
|
2023-02-05 17:01:57 +04:00
|
|
|
/// <summary>
|
2023-02-05 21:54:36 +04:00
|
|
|
/// The main entry point for the application.
|
2023-02-05 17:01:57 +04:00
|
|
|
/// </summary>
|
|
|
|
[STAThread]
|
|
|
|
static void Main()
|
|
|
|
{
|
2023-02-05 21:54:36 +04:00
|
|
|
// To customize application configuration such as set high DPI
|
|
|
|
//settings or default font,
|
2023-02-19 21:32:04 +04:00
|
|
|
// see https://aka.ms/applicationconfiguration.
|
|
|
|
ApplicationConfiguration.Initialize();
|
2023-02-05 21:54:36 +04:00
|
|
|
var services = new ServiceCollection();
|
|
|
|
ConfigureServices(services);
|
|
|
|
_serviceProvider = services.BuildServiceProvider();
|
|
|
|
Application.Run(_serviceProvider.GetRequiredService<FormMain>());
|
2023-02-05 17:01:57 +04:00
|
|
|
}
|
2023-02-05 21:54:36 +04:00
|
|
|
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<IJewelStorage, JewelStorage>();
|
|
|
|
services.AddTransient<IComponentLogic, ComponentLogic>();
|
|
|
|
services.AddTransient<IOrderLogic, OrderLogic>();
|
|
|
|
services.AddTransient<IJewelLogic, JewelLogic>();
|
|
|
|
services.AddTransient<FormMain>();
|
|
|
|
services.AddTransient<FormComponent>();
|
|
|
|
services.AddTransient<FormComponents>();
|
|
|
|
services.AddTransient<FormCreateOrder>();
|
|
|
|
services.AddTransient<FormJewel>();
|
|
|
|
services.AddTransient<FormJewelComponent>();
|
|
|
|
services.AddTransient<FormJewels>();
|
|
|
|
}
|
|
|
|
|
2023-02-05 17:01:57 +04:00
|
|
|
}
|
|
|
|
}
|