Beispiel #1
0
 public void SaveStudent(StudentForm.StudentService.Student studentEx)
 {
     StudentForm.StudentService.SaveStudentRequest inValue = new StudentForm.StudentService.SaveStudentRequest();
     inValue.Body           = new StudentForm.StudentService.SaveStudentRequestBody();
     inValue.Body.studentEx = studentEx;
     StudentForm.StudentService.SaveStudentResponse retVal = ((StudentForm.StudentService.ServiceSoap)(this)).SaveStudent(inValue);
 }
Beispiel #2
0
 public void DeleteStudent(StudentForm.StudentService.Student studentExDelete)
 {
     StudentForm.StudentService.DeleteStudentRequest inValue = new StudentForm.StudentService.DeleteStudentRequest();
     inValue.Body = new StudentForm.StudentService.DeleteStudentRequestBody();
     inValue.Body.studentExDelete = studentExDelete;
     StudentForm.StudentService.DeleteStudentResponse retVal = ((StudentForm.StudentService.ServiceSoap)(this)).DeleteStudent(inValue);
 }
Beispiel #3
0
 public StudentForm.StudentService.Student[] SearchStudent(StudentForm.StudentService.Student studentExSearch)
 {
     StudentForm.StudentService.SearchStudentRequest inValue = new StudentForm.StudentService.SearchStudentRequest();
     inValue.Body = new StudentForm.StudentService.SearchStudentRequestBody();
     inValue.Body.studentExSearch = studentExSearch;
     StudentForm.StudentService.SearchStudentResponse retVal = ((StudentForm.StudentService.ServiceSoap)(this)).SearchStudent(inValue);
     return(retVal.Body.SearchStudentResult);
 }
Beispiel #4
0
 public DeleteStudentRequestBody(StudentForm.StudentService.Student studentExDelete)
 {
     this.studentExDelete = studentExDelete;
 }
Beispiel #5
0
 public UpdateStudentRequestBody(StudentForm.StudentService.Student studentExUpdate)
 {
     this.studentExUpdate = studentExUpdate;
 }
Beispiel #6
0
 public SearchStudentRequestBody(StudentForm.StudentService.Student studentExSearch)
 {
     this.studentExSearch = studentExSearch;
 }
Beispiel #7
0
 public SaveStudentRequestBody(StudentForm.StudentService.Student studentEx)
 {
     this.studentEx = studentEx;
 }