2024-11-05 22:04:24 +04:00
|
|
|
using BusinessLogic.BusinessLogic;
|
|
|
|
using Contracts.BusinessLogicContracts;
|
|
|
|
using Contracts.StorageContracts;
|
|
|
|
using DatabaseImplement.Implements;
|
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using System;
|
|
|
|
|
2024-09-05 18:58:07 +04:00
|
|
|
namespace Forms
|
|
|
|
{
|
|
|
|
internal static class Program
|
|
|
|
{
|
2024-11-05 22:04:24 +04:00
|
|
|
private static ServiceProvider? _serviceProvider;
|
|
|
|
public static ServiceProvider? ServiceProvider => _serviceProvider;
|
2024-09-05 18:58:07 +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();
|
2024-11-05 22:04:24 +04:00
|
|
|
var services = new ServiceCollection();
|
|
|
|
ConfigureServices(services);
|
|
|
|
_serviceProvider = services.BuildServiceProvider();
|
|
|
|
Application.Run(_serviceProvider.GetRequiredService<FormMain>());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private static void ConfigureServices(ServiceCollection services)
|
|
|
|
{
|
|
|
|
services.AddTransient<IDeliveryTypeStorage, DeliveryTypeStorage>();
|
|
|
|
services.AddTransient<IDeliveryTypeLogic, DeliveryTypeLogic>();
|
|
|
|
services.AddTransient<IDeliveryLogic, DeliveryLogic>();
|
|
|
|
services.AddTransient<IDeliveryStorage, DeliveryStorage>();
|
|
|
|
services.AddTransient<FormMain>();
|
|
|
|
services.AddTransient<DeliveryTypeForm>();
|
2024-11-06 02:29:24 +04:00
|
|
|
services.AddTransient<DeliveryForm>(); ;
|
2024-09-05 18:58:07 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|