|
|
|
@ -447,7 +447,7 @@ namespace Model.Stub
|
|
|
|
|
/// <param name="url">Chemin d'accès de l'image de l'objet CustomTitle</param>
|
|
|
|
|
/// <param name="info">Informations de l'objet CustomTitle</param>
|
|
|
|
|
/// <param name="path">Chemin d'accès de l'objet CustomTitle</param>
|
|
|
|
|
public void UpdateCustomTitle(CustomTitle title, string name, string url, string info, string path)
|
|
|
|
|
public static void UpdateCustomTitle(CustomTitle title, string name, string url, string info, string path)
|
|
|
|
|
{
|
|
|
|
|
title.Name = name;
|
|
|
|
|
title.ImageURL = url;
|
|
|
|
@ -485,7 +485,7 @@ namespace Model.Stub
|
|
|
|
|
/// <param name="artist">Artist de l'objet InfoTitle</param>
|
|
|
|
|
/// <param name="description">Description de l'objet InfoTitle</param>
|
|
|
|
|
/// <param name="genre">Genre de l'objet InfoTitle</param>
|
|
|
|
|
public void UpdateInfoTitle(InfoTitle title, string name, string url, string info, Artist artist, string description, Genre genre)
|
|
|
|
|
public static void UpdateInfoTitle(InfoTitle title, string name, string url, string info, Artist artist, string description, Genre genre)
|
|
|
|
|
{
|
|
|
|
|
title.Name = name;
|
|
|
|
|
title.ImageURL = url;
|
|
|
|
@ -525,7 +525,7 @@ namespace Model.Stub
|
|
|
|
|
/// <param name="artist">Artist de l'objet Album</param>
|
|
|
|
|
/// <param name="description">Description de l'objet Album</param>
|
|
|
|
|
/// <param name="info">Informations de l'objet Album</param>
|
|
|
|
|
public void UpdateAlbum(Album album, string name, string url, Artist artist, string description, string info)
|
|
|
|
|
public static void UpdateAlbum(Album album, string name, string url, Artist artist, string description, string info)
|
|
|
|
|
{
|
|
|
|
|
album.Name = name;
|
|
|
|
|
album.ImageURL = url;
|
|
|
|
@ -562,7 +562,7 @@ namespace Model.Stub
|
|
|
|
|
/// <param name="name">Nom de l'objet Playlist</param>
|
|
|
|
|
/// <param name="description">Description de l'objet Playlist</param>
|
|
|
|
|
/// <param name="url">Chemin d'accès de l'image de l'objet Playlist</param>
|
|
|
|
|
public void UpdatePlaylist(Playlist playlist, string name, string description, string url)
|
|
|
|
|
public static void UpdatePlaylist(Playlist playlist, string name, string description, string url)
|
|
|
|
|
{
|
|
|
|
|
playlist.Name = name;
|
|
|
|
|
playlist.Description = description;
|
|
|
|
@ -591,7 +591,7 @@ namespace Model.Stub
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="artist">Artiste à modifier</param>
|
|
|
|
|
/// <param name="name">Nom de l'objet Artist</param>
|
|
|
|
|
public void UpdateArtist(Artist artist, string name)
|
|
|
|
|
public static void UpdateArtist(Artist artist, string name)
|
|
|
|
|
{
|
|
|
|
|
artist.Name = name;
|
|
|
|
|
}
|
|
|
|
|