Ejemplo n.º 1
0
        public void AttendAbsent(Student student)
        {
            bool attendance = false;

            student.Attendance.Add(attendance);
        }
Ejemplo n.º 2
0
        public void AttendThere(Student student)
        {
            bool attendance = true;

            student.Attendance.Add(attendance);
        }