Exemplo n.º 1
0
 public ApiController(
     IAnswerService answerService, 
     IExerciseService exerciseService, 
     IObjectiveService objectiveService, 
     IStudentService studentService,
     IStudentAnswerService studentAnswerService,
     IStudentDeviationsService studentDeviationService)
 {
     _answerService = answerService;
     _exerciseService = exerciseService;
     _objectiveService = objectiveService;
     _studentService = studentService;
     _studentAnswerService = studentAnswerService;
     _studentDeviationService = studentDeviationService;
 }
 public StudentAnswerController(IStudentAnswerService StudentAnswerService)
 {
     _StudentAnswerService = StudentAnswerService;
 }