示例#1
0
 public AttendanceAPIShortMapper(IStudentAPIMapper studentAPIMapper, ILaboratoryAPIMapper laboratoryAPIMapper, IStudentService studentService, ILaboratoryService laboratoryService)
 {
     _iStudentService      = studentService;
     _iLaboratoryService   = laboratoryService;
     _iStudentAPIMapper    = studentAPIMapper;
     _iLaboratoryAPIMapper = laboratoryAPIMapper;
 }
示例#2
0
 public SubmissionAPIShortMapper(IStudentAPIMapper studentAPIMapper, IAssignmentAPIMapper assignmentAPIMapper, IStudentService studentService, IAssignmentService assignmentService)
 {
     _iStudentService      = studentService;
     _iAssignmentService   = assignmentService;
     _iStudentAPIMapper    = studentAPIMapper;
     _iAssignmentAPIMapper = assignmentAPIMapper;
 }
示例#3
0
 public StudentController(IStudentService iStudentService, IStudentAPIMapper iStudentAPIMapper)
 {
     _iStudentService   = iStudentService;
     _iStudentAPIMapper = iStudentAPIMapper;
 }
示例#4
0
 public SubmissionAPIMapper(IAssignmentAPIMapper AssignmentAPIMapper, IStudentAPIMapper studentAPIMapper)
 {
     _iAssignmentAPIMapper = AssignmentAPIMapper;
     _iStudentAPIMapper    = studentAPIMapper;
 }
示例#5
0
 public AttendanceAPIMapper(ILaboratoryAPIMapper laboratoryAPIMapper, IStudentAPIMapper studentAPIMapper)
 {
     _iLaboratoryAPIMapper = laboratoryAPIMapper;
     _iStudentAPIMapper    = studentAPIMapper;
 }
示例#6
0
 public StudentController(IStudentService studentService, IStudentAPIMapper studentAPIMapper)
 {
     _studentService   = studentService;
     _studentAPIMapper = studentAPIMapper;
 }