LabWork04 Remove IoC-container from WinFormsPlugins
This commit is contained in:
parent
b12ff971df
commit
df692293b8
@ -10,16 +10,6 @@ namespace WinFormsPlugins
|
|||||||
{
|
{
|
||||||
internal static class Program
|
internal static class Program
|
||||||
{
|
{
|
||||||
/// <summary>
|
|
||||||
/// IoC-êîíòåéíåð
|
|
||||||
/// </summary>
|
|
||||||
private static ServiceProvider? _serviceProvider;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// IoC-êîíòåéíåð
|
|
||||||
/// </summary>
|
|
||||||
public static ServiceProvider? ServiceProvider => _serviceProvider;
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The main entry point for the application.
|
/// The main entry point for the application.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -29,33 +19,7 @@ namespace WinFormsPlugins
|
|||||||
// To customize application configuration such as set high DPI settings or default font,
|
// To customize application configuration such as set high DPI settings or default font,
|
||||||
// see https://aka.ms/applicationconfiguration.
|
// see https://aka.ms/applicationconfiguration.
|
||||||
ApplicationConfiguration.Initialize();
|
ApplicationConfiguration.Initialize();
|
||||||
|
|
||||||
var services = new ServiceCollection();
|
|
||||||
ConfigureServices(services);
|
|
||||||
_serviceProvider = services.BuildServiceProvider();
|
|
||||||
|
|
||||||
Application.Run(new FormMain());
|
Application.Run(new FormMain());
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Êîíôèãóðàöèÿ ñåðâèñîâ
|
|
||||||
/// </summary>
|
|
||||||
/// <param name="services"></param>
|
|
||||||
private static void ConfigureServices(ServiceCollection services)
|
|
||||||
{
|
|
||||||
// Ëîããåð
|
|
||||||
services.AddLogging(option =>
|
|
||||||
{
|
|
||||||
option.SetMinimumLevel(LogLevel.Information);
|
|
||||||
option.AddNLog("nlog.config");
|
|
||||||
});
|
|
||||||
|
|
||||||
// IoC-êîíòåéíåð, áèçíåñ-ëîãèêà
|
|
||||||
services.AddTransient<IOrderLogic, OrderLogic>();
|
|
||||||
services.AddTransient<IOrderTypeLogic, OrderTypeLogic>();
|
|
||||||
|
|
||||||
// IoC-êîíòåéíåð, ôîðìû îòîáðàæåíèÿ
|
|
||||||
services.AddTransient<FormMain>();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user