Exemplo n.º 1
0
 public StartStudentTestSession(
     IStudentTestSessionService studentTestSessionService,
     IUnitOfWork unitOfWork)
 {
     _studentTestSessionService = studentTestSessionService;
     _unitOfWork = unitOfWork;
 }
Exemplo n.º 2
0
 public TestSessionService(
     IUnitOfWork unitOfWork,
     IExecutionContextService executionContextService,
     IStudentTestSessionService studentTestSessionService,
     ITestSessionAssessmentService testSessionAssessmentService)
 {
     _unitOfWork = unitOfWork;
     _executionContextService      = executionContextService;
     _studentTestSessionService    = studentTestSessionService;
     _testSessionAssessmentService = testSessionAssessmentService;
 }