123456789101112131415161718192021 |
- using PLCIOPointTool.Services;
- using PLCIOPointTool.Views;
- using System.Windows;
- namespace PLCIOPointTool;
- /// <summary>
- /// Interaction logic for App.xaml
- /// </summary>
- public partial class App : PrismApplication
- {
- protected override Window CreateShell() => Container.Resolve<MainWindow>();
- protected override void RegisterTypes(IContainerRegistry containerRegistry)
- {
- //Services
- containerRegistry.RegisterSingleton<ILogService, LogService>();
- containerRegistry.RegisterSingleton<IClientService, AdsClientService>();
- }
- }
|