/// <summary>
 /// Gets the description items for culture.
 /// </summary>
 /// <param name="objectId">The object identifier.</param>
 /// <returns>DescriptionItem[][].</returns>
 public DescriptionItem[] GetDescriptionItemsForCulture(string objectId)
 {
     return(MediaAgentFactory
            .CreateDescriptionAgent()
            .GetDescriptionItemsForCulture(objectId));
 }
 /// <summary>
 /// Gets the type of the description items for.
 /// </summary>
 /// <param name="typeId">The type identifier.</param>
 /// <returns>DescriptionItem[][].</returns>
 public DescriptionItem[] GetDescriptionItemsForType(string typeId)
 {
     return(MediaAgentFactory
            .CreateDescriptionAgent()
            .GetDescriptionItemsForType(typeId));
 }
 /// <summary>
 /// Gets the description item.
 /// </summary>
 /// <param name="id">The identifier.</param>
 /// <returns>DescriptionItem.</returns>
 public DescriptionItem GetDescriptionItem(string id)
 {
     return(MediaAgentFactory
            .CreateDescriptionAgent()
            .GetDescriptionItem(id));
 }
 /// <summary>
 /// Saves the descriptions.
 /// </summary>
 /// <param name="descriptions">The descriptions.</param>
 /// <returns>DescriptionItem[][].</returns>
 public DescriptionItem[] SaveDescriptions(DescriptionItem[] descriptions)
 {
     return(MediaAgentFactory
            .CreateDescriptionAgent()
            .SaveDescriptions(descriptions));
 }
 /// <summary>
 /// Deletes the description.
 /// </summary>
 /// <param name="description">The description.</param>
 /// <returns>DescriptionItem.</returns>
 public DescriptionItem DeleteDescription(DescriptionItem description)
 {
     return(MediaAgentFactory
            .CreateDescriptionAgent()
            .DeleteDescription(description));
 }
 /// <summary>
 /// Gets the type of the description items for object and.
 /// </summary>
 /// <param name="objectId">The object identifier.</param>
 /// <param name="typeId">The type identifier.</param>
 /// <returns>DescriptionItem[][].</returns>
 public DescriptionItem[] GetDescriptionItemsForObjectAndType(string objectId, string typeId)
 {
     return(MediaAgentFactory
            .CreateDescriptionAgent()
            .GetDescriptionItemsForObjectAndType(objectId, typeId));
 }