Esempio n. 1
0
 public System.Threading.Tasks.Task <StudentWebAppClient.StudentService.GetStudentByPersonIdResponse> GetStudentByPersonIdAsync(int id, string lastName)
 {
     StudentWebAppClient.StudentService.GetStudentByPersonIdRequest inValue = new StudentWebAppClient.StudentService.GetStudentByPersonIdRequest();
     inValue.Body          = new StudentWebAppClient.StudentService.GetStudentByPersonIdRequestBody();
     inValue.Body.id       = id;
     inValue.Body.lastName = lastName;
     return(((StudentWebAppClient.StudentService.StudentServiceSoap)(this)).GetStudentByPersonIdAsync(inValue));
 }
Esempio n. 2
0
 public StudentWebAppClient.StudentService.Student GetStudentByPersonId(int id, string lastName)
 {
     StudentWebAppClient.StudentService.GetStudentByPersonIdRequest inValue = new StudentWebAppClient.StudentService.GetStudentByPersonIdRequest();
     inValue.Body          = new StudentWebAppClient.StudentService.GetStudentByPersonIdRequestBody();
     inValue.Body.id       = id;
     inValue.Body.lastName = lastName;
     StudentWebAppClient.StudentService.GetStudentByPersonIdResponse retVal = ((StudentWebAppClient.StudentService.StudentServiceSoap)(this)).GetStudentByPersonId(inValue);
     return(retVal.Body.GetStudentByPersonIdResult);
 }
Esempio n. 3
0
 System.Threading.Tasks.Task <StudentWebAppClient.StudentService.GetStudentByPersonIdResponse> StudentWebAppClient.StudentService.StudentServiceSoap.GetStudentByPersonIdAsync(StudentWebAppClient.StudentService.GetStudentByPersonIdRequest request)
 {
     return(base.Channel.GetStudentByPersonIdAsync(request));
 }
Esempio n. 4
0
 StudentWebAppClient.StudentService.GetStudentByPersonIdResponse StudentWebAppClient.StudentService.StudentServiceSoap.GetStudentByPersonId(StudentWebAppClient.StudentService.GetStudentByPersonIdRequest request)
 {
     return(base.Channel.GetStudentByPersonId(request));
 }