Exemplo n.º 1
0
 public System.Threading.Tasks.Task <Calculator.CalcServ.subResponse> subAsync(double a, double b)
 {
     Calculator.CalcServ.subRequest inValue = new Calculator.CalcServ.subRequest();
     inValue.a = a;
     inValue.b = b;
     return(((Calculator.CalcServ.calcPortType)(this)).subAsync(inValue));
 }
Exemplo n.º 2
0
 public double sub(double a, double b)
 {
     Calculator.CalcServ.subRequest inValue = new Calculator.CalcServ.subRequest();
     inValue.a = a;
     inValue.b = b;
     Calculator.CalcServ.subResponse retVal = ((Calculator.CalcServ.calcPortType)(this)).sub(inValue);
     return(retVal.result);
 }
Exemplo n.º 3
0
 System.Threading.Tasks.Task <Calculator.CalcServ.subResponse> Calculator.CalcServ.calcPortType.subAsync(Calculator.CalcServ.subRequest request)
 {
     return(base.Channel.subAsync(request));
 }
Exemplo n.º 4
0
 Calculator.CalcServ.subResponse Calculator.CalcServ.calcPortType.sub(Calculator.CalcServ.subRequest request)
 {
     return(base.Channel.sub(request));
 }