public System.Threading.Tasks.Task <Calculadora.ServicoWeb.somaResponse> somaAsync(double arg0, double arg1)
 {
     Calculadora.ServicoWeb.somaRequest inValue = new Calculadora.ServicoWeb.somaRequest();
     inValue.arg0 = arg0;
     inValue.arg1 = arg1;
     return(((Calculadora.ServicoWeb.ServicoWeb)(this)).somaAsync(inValue));
 }
 public double soma(double arg0, double arg1)
 {
     Calculadora.ServicoWeb.somaRequest inValue = new Calculadora.ServicoWeb.somaRequest();
     inValue.arg0 = arg0;
     inValue.arg1 = arg1;
     Calculadora.ServicoWeb.somaResponse retVal = ((Calculadora.ServicoWeb.ServicoWeb)(this)).soma(inValue);
     return(retVal.@return);
 }
 System.Threading.Tasks.Task <Calculadora.ServicoWeb.somaResponse> Calculadora.ServicoWeb.ServicoWeb.somaAsync(Calculadora.ServicoWeb.somaRequest request)
 {
     return(base.Channel.somaAsync(request));
 }
 Calculadora.ServicoWeb.somaResponse Calculadora.ServicoWeb.ServicoWeb.soma(Calculadora.ServicoWeb.somaRequest request)
 {
     return(base.Channel.soma(request));
 }