예제 #1
0
 public AssignmentAPIShortMapper(ILaboratoryAPIMapper laboratoryAPIMapper, ILaboratoryService laboratoryService, IAssignmentService assignmentService, IAssignmentMapper assignmentMapper)
 {
     _iAssignmentService   = assignmentService;
     _iAssignmentMapper    = assignmentMapper;
     _iLaboratoryService   = laboratoryService;
     _iLaboratoryAPIMapper = laboratoryAPIMapper;
 }
예제 #2
0
 public AttendanceAPIShortMapper(IStudentAPIMapper studentAPIMapper, ILaboratoryAPIMapper laboratoryAPIMapper, IStudentService studentService, ILaboratoryService laboratoryService)
 {
     _iStudentService      = studentService;
     _iLaboratoryService   = laboratoryService;
     _iStudentAPIMapper    = studentAPIMapper;
     _iLaboratoryAPIMapper = laboratoryAPIMapper;
 }
예제 #3
0
 public LaboratoryController(ILaboratoryService laboratoryService, ILaboratoryAPIMapper laboratoryAPIMapper)
 {
     _laboratoryService   = laboratoryService;
     _laboratoryAPIMapper = laboratoryAPIMapper;
 }
예제 #4
0
 public AssignmentAPIMapper(ILaboratoryAPIMapper laboratoryAPIMapper)
 {
     _iLaboratoryAPIMapper = laboratoryAPIMapper;
 }
예제 #5
0
 public AttendanceAPIMapper(ILaboratoryAPIMapper laboratoryAPIMapper, IStudentAPIMapper studentAPIMapper)
 {
     _iLaboratoryAPIMapper = laboratoryAPIMapper;
     _iStudentAPIMapper    = studentAPIMapper;
 }