コード例 #1
0
 public void RemovePodcast(int index)
 {
     podcastRepository.Delete(index);
 }
コード例 #2
0
 public async Task RemovePodcast(Guid id)
 {
     await _podcastRepository.Delete(id);
 }