public static List <SongListItem> GetSongs(HttpWebResponse response) { StreamReader reader = new StreamReader(response.GetResponseStream()); string json = reader.ReadToEnd(); return(AlbumParsing.ParseSongs(json)); }
public static Album GetDetails(HttpWebResponse response) { StreamReader reader = new StreamReader(response.GetResponseStream()); string json = reader.ReadToEnd(); return(AlbumParsing.ParseDetails(json)); }