First pass at the plex update service

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

View file

@ -92,6 +92,11 @@ namespace PlexRequests.Store
return db.Update(entity);
}
}
public bool UpdateAll(IEnumerable<T> entity)
{
throw new NotSupportedException();
}
}
}