public void loadSessionStudents(RollcallSession chosenSession)
 {
     clearStudents();
     foreach (var student in chosenSession.getCurrentStudents())
     {
         addStudent(student, chosenSession.isSigned(student) ?
                    RollcallStudent.State.SIGNED : RollcallStudent.State.UNSIGNED);
     }
     alterRowAndColumnCount();
 }
示例#2
0
 public override List <Student> getCurrentStudents()
 {
     return(rollcallSession.getCurrentStudents());
 }