Browse Source

Add NotificationBarService to DI

pull/5/head
Ionite 1 year ago
parent
commit
b46d15133b
No known key found for this signature in database
  1. 1
      StabilityMatrix/App.xaml.cs

1
StabilityMatrix/App.xaml.cs

@ -100,6 +100,7 @@ namespace StabilityMatrix
serviceCollection.AddSingleton<Wpf.Ui.Contracts.ISnackbarService, Wpf.Ui.Services.SnackbarService>();
serviceCollection.AddSingleton<IPrerequisiteHelper, PrerequisiteHelper>();
serviceCollection.AddSingleton<ISnackbarService, SnackbarService>();
serviceCollection.AddSingleton<INotificationBarService, NotificationBarService>();
serviceCollection.AddSingleton<IDownloadService, DownloadService>();
serviceCollection.AddTransient<IGitHubClient, GitHubClient>(_ =>
{

Loading…
Cancel
Save