public AssignmentAPIShortMapper(ILaboratoryAPIMapper laboratoryAPIMapper, ILaboratoryService laboratoryService, IAssignmentService assignmentService, IAssignmentMapper assignmentMapper) { _iAssignmentService = assignmentService; _iAssignmentMapper = assignmentMapper; _iLaboratoryService = laboratoryService; _iLaboratoryAPIMapper = laboratoryAPIMapper; }
public AttendanceAPIShortMapper(IStudentAPIMapper studentAPIMapper, ILaboratoryAPIMapper laboratoryAPIMapper, IStudentService studentService, ILaboratoryService laboratoryService) { _iStudentService = studentService; _iLaboratoryService = laboratoryService; _iStudentAPIMapper = studentAPIMapper; _iLaboratoryAPIMapper = laboratoryAPIMapper; }
public LaboratoryController(ILaboratoryService laboratoryService, ILaboratoryAPIMapper laboratoryAPIMapper) { _laboratoryService = laboratoryService; _laboratoryAPIMapper = laboratoryAPIMapper; }
public AssignmentAPIMapper(ILaboratoryAPIMapper laboratoryAPIMapper) { _iLaboratoryAPIMapper = laboratoryAPIMapper; }
public AttendanceAPIMapper(ILaboratoryAPIMapper laboratoryAPIMapper, IStudentAPIMapper studentAPIMapper) { _iLaboratoryAPIMapper = laboratoryAPIMapper; _iStudentAPIMapper = studentAPIMapper; }