public void InsertarJuego(string nickname, string oponente, int desplegadas, int sobrevivientes, int destruidas, int gano)
 {
     EddCliente.ReferenciaServidor.InsertarJuegoRequest inValue = new EddCliente.ReferenciaServidor.InsertarJuegoRequest();
     inValue.Body                = new EddCliente.ReferenciaServidor.InsertarJuegoRequestBody();
     inValue.Body.nickname       = nickname;
     inValue.Body.oponente       = oponente;
     inValue.Body.desplegadas    = desplegadas;
     inValue.Body.sobrevivientes = sobrevivientes;
     inValue.Body.destruidas     = destruidas;
     inValue.Body.gano           = gano;
     EddCliente.ReferenciaServidor.InsertarJuegoResponse retVal = ((EddCliente.ReferenciaServidor.WebServiceSoap)(this)).InsertarJuego(inValue);
 }
 EddCliente.ReferenciaServidor.InsertarJuegoResponse EddCliente.ReferenciaServidor.WebServiceSoap.InsertarJuego(EddCliente.ReferenciaServidor.InsertarJuegoRequest request)
 {
     return(base.Channel.InsertarJuego(request));
 }