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