From 5a5b48feff3a0b0a660aaaa9bdfd04fd0fe711ed Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 23 Oct 2014 00:26:01 -0400 Subject: added new cabac value --- MediaBrowser.Controller/Persistence/IItemRepository.cs | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'MediaBrowser.Controller/Persistence') diff --git a/MediaBrowser.Controller/Persistence/IItemRepository.cs b/MediaBrowser.Controller/Persistence/IItemRepository.cs index 02bca739f..edaa15c9d 100644 --- a/MediaBrowser.Controller/Persistence/IItemRepository.cs +++ b/MediaBrowser.Controller/Persistence/IItemRepository.cs @@ -33,7 +33,7 @@ namespace MediaBrowser.Controller.Persistence /// The cancellation token. /// Task. Task DeleteItem(Guid id, CancellationToken cancellationToken); - + /// /// Gets the critic reviews. /// @@ -41,6 +41,13 @@ namespace MediaBrowser.Controller.Persistence /// Task{IEnumerable{ItemReview}}. IEnumerable GetCriticReviews(Guid itemId); + /// + /// Gets the children items. + /// + /// The parent identifier. + /// IEnumerable<BaseItem>. + IEnumerable GetChildrenItems(Guid parentId); + /// /// Saves the critic reviews. /// @@ -101,7 +108,7 @@ namespace MediaBrowser.Controller.Persistence /// The type. /// IEnumerable{Guid}. IEnumerable GetItemsOfType(Type type); - + /// /// Saves the children. /// -- cgit v1.2.3