public ActionResult Index()
        {
            var listaDePartida     = appPartida.ListarTodos();
            var listaDeCampeonatos = appCampeonato.ListarTodos();

            ViewBag.DropDownValues = new SelectList(listaDeCampeonatos, "id", "Nome");
            return(View(listaDePartida));
        }
Esempio n. 2
0
        public ActionResult Tabela()
        {
            var tabela = appPartida.ListarTodos();

            return(View(tabela));
        }