2013-04-02 17:37:49 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
using System;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Persistence
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interface IDisplayPreferencesRepository
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface IDisplayPreferencesRepository : IRepository
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Saves display preferences for an item
|
|
|
|
|
/// </summary>
|
2013-04-02 17:37:49 +00:00
|
|
|
|
/// <param name="displayPreferences">The display preferences.</param>
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
2013-04-05 19:02:48 +00:00
|
|
|
|
Task SaveDisplayPreferences(DisplayPreferences displayPreferences,
|
2013-04-02 17:37:49 +00:00
|
|
|
|
CancellationToken cancellationToken);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2013-04-02 17:37:49 +00:00
|
|
|
|
/// Gets the display preferences.
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// </summary>
|
2013-04-02 17:37:49 +00:00
|
|
|
|
/// <param name="displayPreferencesId">The display preferences id.</param>
|
|
|
|
|
/// <returns>Task{DisplayPreferences}.</returns>
|
2013-04-05 19:02:48 +00:00
|
|
|
|
Task<DisplayPreferences> GetDisplayPreferences(Guid displayPreferencesId);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|