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