コード例 #1
0
        private void CargarJugadoresEnViewBag()
        {
            IEnumerable <Jugador> jugadores = jugadorService.GetAll();

            ViewBag.Jugadores = jugadores;
        }
        public ActionResult Index()
        {
            IEnumerable <Jugador> jugadores = jugadoresService.GetAll();

            return(View("ListaDeJugadores", jugadores));
        }