/// <summary>
 /// Makes a call to the EpisodeRepository to get JSON data for all episodes in the database
 /// </summary>
 /// <returns>Task<List<Episode>></returns>
 public async Task <List <Episode> > GetAllEpisodesAsync()
 {
     return(await _EpisodeRepository.GetAllEpisodesAsync());
 }