// GET: /Livro/ public ActionResult Index() { var livros = from livro in _livroRepositorio.GetLivros() select livro; return(View(livros)); }