public List<string> GetMusicVideoGenres()
 {
     List<string> list = null;
     try
     {
         list = new Model.iTunes.MusicVideos.MusicVideoCategory().Categories.Select(x => x.Key).ToList();
     }
     catch (Exception ex)
     {
         this.DealWithErrors(ex);
     }
     return list;
 }
        public List <string> GetMusicVideoGenres()
        {
            List <string> list = null;

            try
            {
                list = new Model.iTunes.MusicVideos.MusicVideoCategory().Categories.Select(x => x.Key).ToList();
            }
            catch (Exception ex)
            {
                this.DealWithErrors(ex);
            }
            return(list);
        }