2024-10-28 14:54:01 +04:00
|
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
|
|
using ClientsContracts.BusinessLogicContracts;
|
|
|
|
using ClientsContracts.StorageContracts;
|
|
|
|
using ClientsBusinessLogics.BusinessLogics;
|
|
|
|
using ClientDataBaseImplement.Implements;
|
|
|
|
|
2024-09-16 20:15:18 +04:00
|
|
|
namespace WinFormsTest
|
|
|
|
{
|
|
|
|
internal static class Program
|
|
|
|
{
|
2024-10-28 14:54:01 +04:00
|
|
|
private static ServiceProvider? _serviceProvider;
|
|
|
|
public static ServiceProvider? ServiceProvider => _serviceProvider;
|
2024-09-16 20:15:18 +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-10-28 14:54:01 +04:00
|
|
|
var services = new ServiceCollection();
|
|
|
|
ConfigureServices(services);
|
|
|
|
_serviceProvider = services.BuildServiceProvider();
|
2024-10-28 20:39:56 +04:00
|
|
|
Application.Run(_serviceProvider.GetRequiredService<FormMain>());
|
2024-09-16 20:15:18 +04:00
|
|
|
}
|
2024-10-28 14:54:01 +04:00
|
|
|
|
|
|
|
private static void ConfigureServices(ServiceCollection services)
|
|
|
|
{
|
|
|
|
services.AddTransient<ICategoryStorage, CategoryStorage>();
|
|
|
|
services.AddTransient<IClientStorage, ClientStorage>();
|
|
|
|
services.AddTransient<ICategoryLogic, CategoryLogic>();
|
|
|
|
services.AddTransient<IClientLogic, ClientLogic>();
|
|
|
|
services.AddTransient<FormMain>();
|
|
|
|
services.AddTransient<FormClient>();
|
|
|
|
services.AddTransient<FormCategories>();
|
|
|
|
}
|
2024-09-16 20:15:18 +04:00
|
|
|
}
|
|
|
|
}
|