public System.Threading.Tasks.Task <WebApplication2.NintyIPC2.helloResponse> helloAsync(string hello)
 {
     WebApplication2.NintyIPC2.helloRequest inValue = new WebApplication2.NintyIPC2.helloRequest();
     inValue.Body       = new WebApplication2.NintyIPC2.helloRequestBody();
     inValue.Body.hello = hello;
     return(((WebApplication2.NintyIPC2.ServicioPrueba)(this)).helloAsync(inValue));
 }
 public string hello(string hello1)
 {
     WebApplication2.NintyIPC2.helloRequest inValue = new WebApplication2.NintyIPC2.helloRequest();
     inValue.Body       = new WebApplication2.NintyIPC2.helloRequestBody();
     inValue.Body.hello = hello1;
     WebApplication2.NintyIPC2.helloResponse retVal = ((WebApplication2.NintyIPC2.ServicioPrueba)(this)).hello(inValue);
     return(retVal.Body.@return);
 }
 System.Threading.Tasks.Task <WebApplication2.NintyIPC2.helloResponse> WebApplication2.NintyIPC2.ServicioPrueba.helloAsync(WebApplication2.NintyIPC2.helloRequest request)
 {
     return(base.Channel.helloAsync(request));
 }
 WebApplication2.NintyIPC2.helloResponse WebApplication2.NintyIPC2.ServicioPrueba.hello(WebApplication2.NintyIPC2.helloRequest request)
 {
     return(base.Channel.hello(request));
 }