Example #1
0
 public System.Threading.Tasks.Task <bool> EnrollStudentAsync(WebTests.ServiceReference.StudentDAO student, WebTests.ServiceReference.CourseDAO course)
 {
     return(base.Channel.EnrollStudentAsync(student, course));
 }
Example #2
0
 public System.Threading.Tasks.Task <bool> AddCourseAsync(WebTests.ServiceReference.CourseDAO course)
 {
     return(base.Channel.AddCourseAsync(course));
 }
Example #3
0
 public bool EnrollStudent(WebTests.ServiceReference.StudentDAO student, WebTests.ServiceReference.CourseDAO course)
 {
     return(base.Channel.EnrollStudent(student, course));
 }
Example #4
0
 public bool AddCourse(WebTests.ServiceReference.CourseDAO course)
 {
     return(base.Channel.AddCourse(course));
 }