Example #1
0
 public static StudentGrades getStudentGrades(string studentId)
 {
     return(StudentDatabaseUtils.getStudentGrades(studentId, connection));
 }
Example #2
0
 public static void getStudents()
 {
     StudentDatabaseUtils.getStudents(connection);
 }
Example #3
0
 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);
 }