41 lines
1.6 KiB
C#
41 lines
1.6 KiB
C#
|
using InternetShopOrdersBusinessLogic.BusinessLogics;
|
||
|
using InternetShopOrdersContracts.BusinessLogicContracts;
|
||
|
using InternetShopOrdersContracts.StorageContracts;
|
||
|
using InternetShopOrdersDatabaseImplement.Implements;
|
||
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
using System;
|
||
|
|
||
|
namespace Lab3Form
|
||
|
{
|
||
|
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()
|
||
|
{
|
||
|
// 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<FormMain>());
|
||
|
}
|
||
|
|
||
|
private static void ConfigureServices(ServiceCollection services)
|
||
|
{
|
||
|
services.AddTransient<ICityStorage, CityStorage>();
|
||
|
services.AddTransient<IOrderStorage, OrderStorage>();
|
||
|
services.AddTransient<ICityLogic, CityLogic>();
|
||
|
services.AddTransient<IOrderLogic, OrderLogic>();
|
||
|
services.AddTransient<FormMain>();
|
||
|
services.AddTransient<FormOrder>();
|
||
|
services.AddTransient<FormCities>();
|
||
|
}
|
||
|
}
|
||
|
}
|