public object Any(HelloWithType request)
 {
     return new HelloWithTypeResponse
         {
             Result = new HelloType { Result = request.Name }
         };
 }
예제 #2
0
 public object Any(HelloWithType request)
 {
     return(new HelloWithTypeResponse
     {
         Result = new HelloType {
             Result = request.Name
         }
     });
 }