public static StudentGrades getStudentGrades(string studentId) { return(StudentDatabaseUtils.getStudentGrades(studentId, connection)); }
public static void getStudents() { StudentDatabaseUtils.getStudents(connection); }
private static void insertStudentAnswer(string studentId, int scenarioId, int scenarioToGrade, int scenarioQuestion, int scenarioAnswer, string studentComment) { StudentDatabaseUtils.insertStudentAnswer(studentId, scenarioId, scenarioToGrade, scenarioQuestion, scenarioAnswer, studentComment, connection); }