Beispiel #1
0
 public System.Threading.Tasks.Task <ClientWebApplication.StudentService.GetStudentByIdResponse> GetStudentByIdAsync(int id)
 {
     ClientWebApplication.StudentService.GetStudentByIdRequest inValue = new ClientWebApplication.StudentService.GetStudentByIdRequest();
     inValue.Body    = new ClientWebApplication.StudentService.GetStudentByIdRequestBody();
     inValue.Body.id = id;
     return(((ClientWebApplication.StudentService.StudentWebServiceSoap)(this)).GetStudentByIdAsync(inValue));
 }
Beispiel #2
0
 public ClientWebApplication.StudentService.Student GetStudentById(int id)
 {
     ClientWebApplication.StudentService.GetStudentByIdRequest inValue = new ClientWebApplication.StudentService.GetStudentByIdRequest();
     inValue.Body    = new ClientWebApplication.StudentService.GetStudentByIdRequestBody();
     inValue.Body.id = id;
     ClientWebApplication.StudentService.GetStudentByIdResponse retVal = ((ClientWebApplication.StudentService.StudentWebServiceSoap)(this)).GetStudentById(inValue);
     return(retVal.Body.GetStudentByIdResult);
 }
Beispiel #3
0
 System.Threading.Tasks.Task <ClientWebApplication.StudentService.GetStudentByIdResponse> ClientWebApplication.StudentService.StudentWebServiceSoap.GetStudentByIdAsync(ClientWebApplication.StudentService.GetStudentByIdRequest request)
 {
     return(base.Channel.GetStudentByIdAsync(request));
 }
Beispiel #4
0
 ClientWebApplication.StudentService.GetStudentByIdResponse ClientWebApplication.StudentService.StudentWebServiceSoap.GetStudentById(ClientWebApplication.StudentService.GetStudentByIdRequest request)
 {
     return(base.Channel.GetStudentById(request));
 }