public ActionResult Detalhes(int id) { var filme = new FilmeRepository(); var model = filme.ListbyId(id); return(View(model)); }