コード例 #1
0
 public System.Threading.Tasks.Task <bool> RemoveStudentAsync(RegistrationWeb.Logic.RegistrationServiceReference.PersonDAO student)
 {
     return(base.Channel.RemoveStudentAsync(student));
 }
コード例 #2
0
 public System.Threading.Tasks.Task <bool> DropCourseAsync(RegistrationWeb.Logic.RegistrationServiceReference.CourseDAO course, RegistrationWeb.Logic.RegistrationServiceReference.PersonDAO person)
 {
     return(base.Channel.DropCourseAsync(course, person));
 }
コード例 #3
0
 public bool RemoveStudent(RegistrationWeb.Logic.RegistrationServiceReference.PersonDAO student)
 {
     return(base.Channel.RemoveStudent(student));
 }
コード例 #4
0
 public bool DropCourse(RegistrationWeb.Logic.RegistrationServiceReference.CourseDAO course, RegistrationWeb.Logic.RegistrationServiceReference.PersonDAO person)
 {
     return(base.Channel.DropCourse(course, person));
 }
コード例 #5
0
 public System.Threading.Tasks.Task <bool> AddPersonAsync(RegistrationWeb.Logic.RegistrationServiceReference.PersonDAO person)
 {
     return(base.Channel.AddPersonAsync(person));
 }
コード例 #6
0
 public bool AddPerson(RegistrationWeb.Logic.RegistrationServiceReference.PersonDAO person)
 {
     return(base.Channel.AddPerson(person));
 }
コード例 #7
0
 public System.Threading.Tasks.Task <RegistrationWeb.Logic.RegistrationServiceReference.CourseDAO[]> GetStudentScheduleAsync(RegistrationWeb.Logic.RegistrationServiceReference.PersonDAO person)
 {
     return(base.Channel.GetStudentScheduleAsync(person));
 }
コード例 #8
0
 public RegistrationWeb.Logic.RegistrationServiceReference.CourseDAO[] GetStudentSchedule(RegistrationWeb.Logic.RegistrationServiceReference.PersonDAO person)
 {
     return(base.Channel.GetStudentSchedule(person));
 }