mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
1008 B
24 lines
1008 B
using System.Collections.Generic; |
|
using System.Threading.Tasks; |
|
using ErsatzTV.Core.Domain; |
|
using LanguageExt; |
|
|
|
namespace ErsatzTV.Core.Interfaces.Repositories |
|
{ |
|
public interface IMediaCollectionRepository |
|
{ |
|
Task<Collection> Add(Collection collection); |
|
Task<bool> AddMediaItem(int collectionId, int mediaItemId); |
|
Task<bool> AddMediaItems(int collectionId, List<int> mediaItemIds); |
|
Task<Option<Collection>> Get(int id); |
|
Task<Option<Collection>> GetCollectionWithItems(int id); |
|
Task<Option<Collection>> GetCollectionWithItemsUntracked(int id); |
|
Task<Option<Collection>> GetCollectionWithCollectionItemsUntracked(int id); |
|
Task<List<Collection>> GetAll(); |
|
Task<Option<List<MediaItem>>> GetItems(int id); |
|
Task<bool> Update(Collection collection); |
|
Task Delete(int collectionId); |
|
Task<List<int>> PlayoutIdsUsingCollection(int collectionId); |
|
Task<bool> IsCustomPlaybackOrder(int collectionId); |
|
} |
|
}
|
|
|