blob: 2740e50ba131ea6a4b85121207f8adee069db857 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package com.stileeducation.markr.service;
import com.stileeducation.markr.dto.AggregatedTestResultsDTO;
import com.stileeducation.markr.dto.MCQTestResultsDTO;
public interface TestResultsService {
MCQTestResultsDTO importTestResults(MCQTestResultsDTO mcqTestResults);
AggregatedTestResultsDTO aggregateTestResults(String testId);
}
|