Example #1
0
 public void DeletePodcast(int index)
 {
     podcastRepository.Delete(index);
 }
 public void DeletePodcast(Podcast podcast)
 {
     podcastRepository.Delete(podcast);
 }