public void ObterTodosTest()
        {
            GerenciadorAutor    target   = new GerenciadorAutor(); // TODO: Initialize to an appropriate value
            IEnumerable <Autor> expected = null;                   // TODO: Initialize to an appropriate value
            IEnumerable <Autor> actual;

            actual = target.ObterTodos();
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
        public List <Autor> ObterTodosAutores()
        {
            GerenciadorAutor gAutor = new GerenciadorAutor();

            return(gAutor.ObterTodos().ToList());
        }
        //
        // GET: /Autor/

        public ViewResult Index()
        {
            return(View(gAutor.ObterTodos()));
        }