using MediaBrowser.Controller.Entities;
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Querying;
using System.Collections.Generic;
namespace MediaBrowser.Controller.Dto
{
///
/// Interface IDtoService
///
public interface IDtoService
{
///
/// Gets the dto id.
///
/// The item.
/// System.String.
string GetDtoId(BaseItem item);
///
/// Attaches the primary image aspect ratio.
///
/// The dto.
/// The item.
/// The fields.
void AttachPrimaryImageAspectRatio(IItemDto dto, IHasImages item, List fields);
///
/// Gets the base item dto.
///
/// The item.
/// The fields.
/// The user.
/// The owner.
/// Task{BaseItemDto}.
BaseItemDto GetBaseItemDto(BaseItem item, List fields, User user = null, BaseItem owner = null);
///
/// Gets the base item dto.
///
/// The item.
/// The options.
/// The user.
/// The owner.
/// BaseItemDto.
BaseItemDto GetBaseItemDto(BaseItem item, DtoOptions options, User user = null, BaseItem owner = null);
///
/// Gets the chapter information dto.
///
/// The item.
/// ChapterInfoDto.
List GetChapterInfoDtos(BaseItem item);
///
/// Gets the user item data dto.
///
/// The data.
/// UserItemDataDto.
UserItemDataDto GetUserItemDataDto(UserItemData data);
///
/// Gets the item by name dto.
///
///
/// The item.
/// The options.
/// The tagged items.
/// The user.
/// BaseItemDto.
BaseItemDto GetItemByNameDto(T item, DtoOptions options, List taggedItems, User user = null)
where T : BaseItem, IItemByName;
}
}