47 lines
1.9 KiB
C#
47 lines
1.9 KiB
C#
|
using SewingDressesBusinessLogic.BusinessLogic;
|
||
|
using SewingDressesContracts.BusinessLogicsContracts;
|
||
|
using SewingDressesContracts.StoragesContracts;
|
||
|
using SewingDressesListImplement.Implements;
|
||
|
using Microsoft.Extensions.DependencyInjection;
|
||
|
using Microsoft.Extensions.Logging;
|
||
|
using NLog.Extensions.Logging;
|
||
|
using System.Drawing;
|
||
|
|
||
|
namespace SewingDressesView
|
||
|
{
|
||
|
internal static class Program
|
||
|
{
|
||
|
private static ServiceProvider? _serviceProvider;
|
||
|
public static ServiceProvider? ServiceProvider => _serviceProvider;
|
||
|
[STAThread]
|
||
|
static void Main()
|
||
|
{
|
||
|
ApplicationConfiguration.Initialize();
|
||
|
var services = new ServiceCollection();
|
||
|
ConfigureServices(services);
|
||
|
_serviceProvider = services.BuildServiceProvider();
|
||
|
Application.Run(_serviceProvider.GetRequiredService<MainForm>());
|
||
|
}
|
||
|
private static void ConfigureServices(ServiceCollection services)
|
||
|
{
|
||
|
services.AddLogging(option =>
|
||
|
{
|
||
|
option.SetMinimumLevel(LogLevel.Information);
|
||
|
option.AddNLog("nlog.config");
|
||
|
});
|
||
|
services.AddTransient<IComponentStorage, ComponentStorage>();
|
||
|
services.AddTransient<IOrderStorage, OrderStorage>();
|
||
|
services.AddTransient<IDressStorage, DressStorage>();
|
||
|
services.AddTransient<IComponentLogic, ComponentLogic>();
|
||
|
services.AddTransient<IOrderLogic, OrderLogic>();
|
||
|
services.AddTransient<IDressLogic, DressLogic>();
|
||
|
services.AddTransient<MainForm>();
|
||
|
services.AddTransient<ComponentForm>();
|
||
|
services.AddTransient<ComponentsForm>();
|
||
|
services.AddTransient<OrderForm>();
|
||
|
services.AddTransient<DressForm>();
|
||
|
services.AddTransient<DressComponentForm>();
|
||
|
services.AddTransient<DressesForm>();
|
||
|
}
|
||
|
}
|
||
|
}
|