Ejemplo n.º 1
0
 //Tar bort alla podcasts med en viss kategori
 private void DeletePodcastWithKategori(string kategori)
 {
     for (int i = podcastController.GetAllPodcasts().Count - 1; i >= 0; i--)
     {
         if (podcastController.GetAllPodcasts()[i].Kategori.Equals(kategori))
         {
             podcastController.RemovePodcast(i);
         }
     }
 }