COP3PLUSSagirov/DeliveryApp/Program.cs

49 lines
1.7 KiB
C#
Raw Permalink Normal View History

using BuisnessLogic;
using Contracts.BuisnessLogicsContracts;
using Contracts.StorageContracts;
using DatabaseImplements.Implements;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Logging;
using System;
namespace DeliveryApp
{
internal static class Program
{
private static ServiceProvider? _serviceProvider;
/// <summary>
/// The main entry point for the application.
/// </summary>
public static ServiceProvider? ServiceProvider => _serviceProvider;
[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<Form1>());
}
private static void ConfigureServices(ServiceCollection services)
{
services.AddLogging(option =>
{
option.SetMinimumLevel(LogLevel.Information);
//option.AddNLog("nlog.config");
});
services.AddTransient<IDeliveryStorage, DeliveryStorage>();
services.AddTransient<ITypeStorage, TypeStorage>();
services.AddTransient<IDeliveryLogic, DeliveryLogic>();
services.AddTransient<ITypeLogic, TypeLogic>();
services.AddTransient<Form1>();
services.AddTransient<FormDelivery>();
services.AddTransient<FormType>();
}
}
}