/// <summary>
 /// Save the artist art and create all custom sizes
 /// </summary>
 public static void SaveArtistArt(Stream stream, int artistId)
 {
     ArtDAL.SaveArtistArt(stream, artistId);
 }
 /// <summary>
 /// Deletes all images associated with the artist
 /// </summary>
 public static void DeleteArtistArt(int artistId)
 {
     ArtDAL.DeleteArtistArt(artistId);
 }
 /// <summary>
 /// Save the album art and create all custom sizes
 /// </summary>
 public static void SaveAlbumArt(Stream stream, int albumId)
 {
     ArtDAL.SaveAlbumArt(stream, albumId);
 }
 /// <summary>
 /// Deletes all images associated with the album
 /// </summary>
 public static void DeleteAlbumArt(int albumId)
 {
     ArtDAL.DeleteAlbumArt(albumId);
 }