/// <summary> /// Inserts the given student on the database. /// </summary> /// <param name="student">The student to be inserted.</param> public void InsertStudent(Student student) { studentDAO.Insert(student); }