59 lines
2.3 KiB
C#

using PizzeriaBusinessLogic;
using PizzeriaContracts.BusinessLogicsContracts;
using PizzeriaContracts.StoragesContracts;
using PizzeriaDatabaseImplement.Implements;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using NLog.Extensions.Logging;
namespace Pizzeria
{
internal static class Program
{
private static ServiceProvider? _serviceProvider;
public static ServiceProvider? ServiceProvider => _serviceProvider;
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
IServiceCollection services = new ServiceCollection();
ConfigureServices(services);
_serviceProvider = services.BuildServiceProvider();
Application.Run(_serviceProvider.GetService<FormMain>());
}
private static void ConfigureServices(IServiceCollection services)
{
services.AddLogging(option =>
{
option.SetMinimumLevel(LogLevel.Information);
option.AddNLog("nlog.config");
});
services.AddTransient<IComponentLogic, ComponentLogic>();
services.AddTransient<IPizzaLogic, PizzaLogic>();
services.AddTransient<IOrderLogic, OrderLogic>();
services.AddTransient<IShopLogic, ShopLogic>();
services.AddTransient<IComponentStorage, ComponentStorage>();
services.AddTransient<IPizzaStorage, PizzaStorage>();
services.AddTransient<IOrderStorage, OrderStorage>();
services.AddTransient<IShopStorage, ShopStorage>();
services.AddTransient<FormMain>();
services.AddTransient<FormComponent>();
services.AddTransient<FormComponents>();
services.AddTransient<FormCreateOrder>();
services.AddTransient<FormPizza>();
services.AddTransient<FormPizzas>();
services.AddTransient<FormShop>();
services.AddTransient<FormShopPizza>();
services.AddTransient<FormShops>();
services.AddTransient<FormPizzaComponent>();
services.AddTransient<FormSellPizza>();
}
}
}