Ejemplo n.º 1
0
        public ActionResult Jugador(string id)
        {
            ServicioEquipos.SrvEquiposClient cliente = new ServicioEquipos.SrvEquiposClient();
            Player jugador = cliente.GetJugador(id);
            return PartialView("_Jugador", jugador);

        }
Ejemplo n.º 2
0
        public ActionResult Modificar(string id, int year, string equipo)
        {
            ServicioEquipos.SrvEquiposClient servicio = new ServicioEquipos.SrvEquiposClient();

            ViewBag.Year   = year;
            ViewBag.Equipo = equipo;

            return(View(servicio.GetJugador(id)));
        }
Ejemplo n.º 3
0
 public ActionResult Modificar(string id, int year, string team)
 {
     ServicioEquipos.SrvEquiposClient cliente = new ServicioEquipos.SrvEquiposClient();
     Player jugador = cliente.GetJugador(id);
     return View("JugadorForm", jugador);
 }
Ejemplo n.º 4
0
        // GET: Jugador
        public ActionResult Index(string id)
        {
            ServicioEquipos.SrvEquiposClient servicio = new ServicioEquipos.SrvEquiposClient();

            return(View(servicio.GetJugador(id)));
        }