Almost finished #659

This commit is contained in:
Jamie.Rees 2016-11-07 17:21:05 +00:00
parent 367ca391b1
commit 0950f20278
14 changed files with 543 additions and 119 deletions

View file

@ -33,6 +33,7 @@ using Ninject.Modules;
using PlexRequests.Core;
using PlexRequests.Core.Migration;
using PlexRequests.Core.StatusChecker;
using PlexRequests.Helpers;
using PlexRequests.Services.Interfaces;
using PlexRequests.Services.Notification;
@ -56,6 +57,8 @@ namespace PlexRequests.UI.NinjectModules
Bind<INotificationService>().To<NotificationService>().InSingletonScope();
Bind<INotificationEngine>().To<NotificationEngine>();
Bind<IStatusChecker>().To<StatusChecker>();
}
}
}