public void AttendAbsent(Student student) { bool attendance = false; student.Attendance.Add(attendance); }
public void AttendThere(Student student) { bool attendance = true; student.Attendance.Add(attendance); }