public System.Threading.Tasks.Task <WS_C____.WS.somaResponse> somaAsync(double num1, double num2)
 {
     WS_C____.WS.somaRequest inValue = new WS_C____.WS.somaRequest();
     inValue.num1 = num1;
     inValue.num2 = num2;
     return(((WS_C____.WS.WSAndroid)(this)).somaAsync(inValue));
 }
 public double soma(double num1, double num2)
 {
     WS_C____.WS.somaRequest inValue = new WS_C____.WS.somaRequest();
     inValue.num1 = num1;
     inValue.num2 = num2;
     WS_C____.WS.somaResponse retVal = ((WS_C____.WS.WSAndroid)(this)).soma(inValue);
     return(retVal.@return);
 }
 System.Threading.Tasks.Task <WS_C____.WS.somaResponse> WS_C____.WS.WSAndroid.somaAsync(WS_C____.WS.somaRequest request)
 {
     return(base.Channel.somaAsync(request));
 }
 WS_C____.WS.somaResponse WS_C____.WS.WSAndroid.soma(WS_C____.WS.somaRequest request)
 {
     return(base.Channel.soma(request));
 }