コード例 #1
0
 public StudentLogic.Presence[] GetAllPresences(StudentLogic.Student student)
 {
     return(base.Channel.GetAllPresences(student));
 }
コード例 #2
0
 public System.Threading.Tasks.Task <StudentLogic.Presence[]> GetAllPresencesAsync(StudentLogic.Student student)
 {
     return(base.Channel.GetAllPresencesAsync(student));
 }
コード例 #3
0
 public int DeleteStudent(StudentLogic.Student student)
 {
     return(base.Channel.DeleteStudent(student));
 }
コード例 #4
0
 public System.Threading.Tasks.Task <int> DeleteStudentAsync(StudentLogic.Student student)
 {
     return(base.Channel.DeleteStudentAsync(student));
 }
コード例 #5
0
 public System.Threading.Tasks.Task <int> EditStudentAsync(StudentLogic.Student student, string[] newValues)
 {
     return(base.Channel.EditStudentAsync(student, newValues));
 }
コード例 #6
0
 public int EditStudent(StudentLogic.Student student, string[] newValues)
 {
     return(base.Channel.EditStudent(student, newValues));
 }
コード例 #7
0
 public int AddStudent(StudentLogic.Student student)
 {
     return(base.Channel.AddStudent(student));
 }
コード例 #8
0
 public System.Threading.Tasks.Task AttendStudentAsync(StudentLogic.Student student, bool presence, StudentLogic.StudingTheSubject pair)
 {
     return(base.Channel.AttendStudentAsync(student, presence, pair));
 }
コード例 #9
0
 public void AttendStudent(StudentLogic.Student student, bool presence, StudentLogic.StudingTheSubject pair)
 {
     base.Channel.AttendStudent(student, presence, pair);
 }