diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-19 23:53:15 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-02-19 23:53:15 -0500 |
| commit | 13e4b2a6a76df957a85e444822c816b42f2bb60c (patch) | |
| tree | 35140e9b5447937ad70744c6605b9c890cb342a2 /MediaBrowser.Controller/Persistence/IItemRepository.cs | |
| parent | 120c8bcbb9381086bf9171eae1ba2df9b3c11bde (diff) | |
add search methods to remote metadata providers
Diffstat (limited to 'MediaBrowser.Controller/Persistence/IItemRepository.cs')
| -rw-r--r-- | MediaBrowser.Controller/Persistence/IItemRepository.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Persistence/IItemRepository.cs b/MediaBrowser.Controller/Persistence/IItemRepository.cs index cc4314256..02bca739f 100644 --- a/MediaBrowser.Controller/Persistence/IItemRepository.cs +++ b/MediaBrowser.Controller/Persistence/IItemRepository.cs @@ -96,6 +96,13 @@ namespace MediaBrowser.Controller.Persistence IEnumerable<Guid> GetChildren(Guid parentId); /// <summary> + /// Gets the type of the items of. + /// </summary> + /// <param name="type">The type.</param> + /// <returns>IEnumerable{Guid}.</returns> + IEnumerable<BaseItem> GetItemsOfType(Type type); + + /// <summary> /// Saves the children. /// </summary> /// <param name="parentId">The parent id.</param> |
