QuizQueryInterface.php 295 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

namespace local_asystgrade\db;

interface QuizQueryInterface
{
    public function get_question_attempts($qid, $slot);

    public function get_reference_answer($qid);

    public function get_attempt_steps($question_attempt_id);

    public function get_student_answer($attemptstepid);
}