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