Beispiel #1
0
 public SubmissionAPIShortMapper(IStudentAPIMapper studentAPIMapper, IAssignmentAPIMapper assignmentAPIMapper, IStudentService studentService, IAssignmentService assignmentService)
 {
     _iStudentService      = studentService;
     _iAssignmentService   = assignmentService;
     _iStudentAPIMapper    = studentAPIMapper;
     _iAssignmentAPIMapper = assignmentAPIMapper;
 }
 public AssignmentController(IAssignmentAPIShortMapper assignmentAPIShortModel, IAssignmentService assignmentService, IAssignmentAPIMapper assignmentAPIMapper)
 {
     _assignmentService       = assignmentService;
     _assignmentAPIMapper     = assignmentAPIMapper;
     _assignmentAPIShortModel = assignmentAPIShortModel;
 }
Beispiel #3
0
 public SubmissionAPIMapper(IAssignmentAPIMapper AssignmentAPIMapper, IStudentAPIMapper studentAPIMapper)
 {
     _iAssignmentAPIMapper = AssignmentAPIMapper;
     _iStudentAPIMapper    = studentAPIMapper;
 }