blob: 0d4cdc97254ee730b301b148089cd0e3951b7033 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package com.stileeducation.markr.service;
import com.stileeducation.markr.dto.MCQTestResultsDTO;
import org.springframework.stereotype.Service;
@Service
public class TestResultsServiceImpl implements TestResultsService {
@Override
public MCQTestResultsDTO importTestResults(MCQTestResultsDTO testResults) {
System.out.println(testResults);
return testResults;
}
}
|