private void CargarJugadoresEnViewBag() { IEnumerable <Jugador> jugadores = jugadorService.GetAll(); ViewBag.Jugadores = jugadores; }
public ActionResult Index() { IEnumerable <Jugador> jugadores = jugadoresService.GetAll(); return(View("ListaDeJugadores", jugadores)); }