44 lines
1.3 KiB
C#
44 lines
1.3 KiB
C#
|
using Microsoft.Extensions.DependencyInjection;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using System.Windows.Forms;
|
|||
|
using
|
|||
|
|
|||
|
namespace CarRent
|
|||
|
{
|
|||
|
internal static class Program
|
|||
|
{
|
|||
|
private static ServiceProvider? _serviceProvider;
|
|||
|
public static ServiceProvider? ServiceProvider => _serviceProvider;
|
|||
|
/// <summary>
|
|||
|
/// Главная точка входа для приложения.
|
|||
|
/// </summary>
|
|||
|
[STAThread]
|
|||
|
static void Main()
|
|||
|
{
|
|||
|
Application.EnableVisualStyles();
|
|||
|
Application.SetCompatibleTextRenderingDefault(false);
|
|||
|
var services = new ServiceCollection();
|
|||
|
ConfigureServices(services);
|
|||
|
_serviceProvider = services.BuildServiceProvider();
|
|||
|
Application.Run(_serviceProvider.GetRequiredService<FormMain>());
|
|||
|
}
|
|||
|
private static void ConfigureServices(ServiceCollection services)
|
|||
|
{
|
|||
|
services.AddTransient<IBranchStorage, BranchStorage>();
|
|||
|
services.AddTransient<ICarStorage, CarStorage>();
|
|||
|
services.AddTransient<IRentalStorage, RentalStorage>();
|
|||
|
services.AddTransient<IClientStorage, ClientStorage>();
|
|||
|
|
|||
|
services.AddTransient<IBlankLogic, BlankLogic>();
|
|||
|
services.AddTransient<IOrderLogic, OrderLogic>();
|
|||
|
services.AddTransient<IDocumentLogic, DocumentLogic>();
|
|||
|
services.AddTransient<IReportLogic, ReportLogic>();
|
|||
|
|
|||
|
services.AddTransient<FormMain>();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|