First pass at the plex update service

This commit is contained in:
tidusjar 2016-03-07 13:08:30 +00:00
commit 7636409790
25 changed files with 661 additions and 16 deletions

View file

@ -1,17 +0,0 @@
using FluentScheduler;
using Nancy.TinyIoc;
namespace PlexRequests.UI.Jobs
{
public class TaskFactory : ITaskFactory
{
public ITask GetTaskInstance<T>() where T : ITask
{
var container = TinyIoCContainer.Current;
object outT;
container.TryResolve(typeof(T), out outT);
return (T)outT;
}
}
}