public ActionResult Episode(int id)
 {
     var repo = new Repository();
     var model = repo.GetEpisode(id);
     return View(model);
 }