public ActionResult Asignar() { List <string> jugadoresOut = new List <string>(); List <string> jugadoresIn = new List <string>(); foreach (var key in HttpContext.Request.Params.AllKeys) { if (key.StartsWith("Out.") && HttpContext.Request.Params[key] != "false") { jugadoresOut.Add(key.Substring(4)); } } //TODO Servicio para borrar de la tabla da apariciones estos jugadores foreach (var key in HttpContext.Request.Params.AllKeys) { if (key.StartsWith("In.") && HttpContext.Request.Params[key] != "false") { jugadoresIn.Add(key.Substring(3)); } } //TODO Servicio para insertar en la tabla da apariciones estos jugadores al equipo año correspondientes Equipo eq = new Equipo() { teamID = "ARI", YearId = 2014 }; ServicioEquipos.SrvEquiposClient equipos = new ServicioEquipos.SrvEquiposClient(); ViewBag.JugadoresEquipo = equipos.GetJugadoresEquipoAño("ARI", 2014).ToList(); //ViewBag.JugadoresLibres = equipos.GetJugadoresLibresAño(2014).ToList(); return(View(eq)); }
public ActionResult Jugadores(string equipo, int year) { ServicioEquipos.SrvEquiposClient equipos = new ServicioEquipos.SrvEquiposClient(); List<Player> jugadores = equipos.GetJugadoresEquipoAño(equipo, year).ToList(); ViewBag.jugadores = jugadores; return PartialView("_ListaJugadores", jugadores); }
// GET: api/Ejemplo public IEnumerable <Player> Get(string equipo, int year) { ServicioEquipos.SrvEquiposClient equipos = new ServicioEquipos.SrvEquiposClient(); List <Player> jugadores = equipos.GetJugadoresEquipoAño(equipo, year).ToList(); return(jugadores); }
public ActionResult Year(string equipo, int year) { ServicioEquipos.SrvEquiposClient Equipos = new ServicioEquipos.SrvEquiposClient(); ViewBag.Players = Equipos.GetJugadoresEquipoAño(equipo, year); return(View("Index", Equipos.GetEquiposByYear(year))); }
public ActionResult Jugadores(string equipo, int year) { ServicioEquipos.SrvEquiposClient equipos = new ServicioEquipos.SrvEquiposClient(); List <Player> jugadores = equipos.GetJugadoresEquipoAño(equipo, year).ToList(); ViewBag.Year = year; ViewBag.IdEquipo = equipo; return(PartialView("ListaJugadores", jugadores)); }
public ActionResult Asignar(int year, string equipo) { Equipo eq = new Equipo() { teamID = "ARI", YearId = 2014 }; ServicioEquipos.SrvEquiposClient equipos = new ServicioEquipos.SrvEquiposClient(); ViewBag.JugadoresEquipo = equipos.GetJugadoresEquipoAño("ARI", 2014).ToList(); //ViewBag.JugadoresLibres = equipos.GetJugadoresLibresAño(2014).ToList(); Cambio sin importancia return(View(eq)); }
// GET: Equipo public ActionResult Index() { ViewBag.jugadores=null; int year = 2014; if(HttpContext.Request.Params["year"]==null) { ViewBag.Year = "2014"; } else { string team = HttpContext.Request.Params["team"]; year = Convert.ToInt32(HttpContext.Request.Params["year"]); ServicioEquipos.SrvEquiposClient Equiposs = new ServicioEquipos.SrvEquiposClient(); ViewBag.jugadores = Equiposs.GetJugadoresEquipoAño(team, year); ViewBag.Year = year; } ServicioEquipos.SrvEquiposClient Equipos = new ServicioEquipos.SrvEquiposClient(); return View(Equipos.GetEquiposByYear(year)); }
// GET: api/Ejemplo public IEnumerable<Player> Get(string equipo, int year) { ServicioEquipos.SrvEquiposClient equipos = new ServicioEquipos.SrvEquiposClient(); List<Player> jugadores = equipos.GetJugadoresEquipoAño(equipo, year).ToList(); return jugadores; }