Exemplo n.º 1
0
    public static Jugador ActualizarJugador(string nombre, string tipo, int edad, int id)
    {
        JugadorBLL.Update(nombre, tipo, edad, id);
        Jugador objJugador = JugadorBLL.SelectById(id);

        return(objJugador);
    }
Exemplo n.º 2
0
    public static Jugador TraerJugador(int idJugador)
    {
        Jugador objJugador = JugadorBLL.SelectById(idJugador);

        return(objJugador);
    }