public AttendanceMapper(ILaboratoryMapper laboratoryMapper, IStudentMapper studentMapper, IStudentService studentService, ILaboratoryService laboratoryService)
 {
     _iLaboratoryMapper  = laboratoryMapper;
     _iStudentMapper     = studentMapper;
     _iStudentService    = studentService;
     _iLaboratoryService = laboratoryService;
 }
Exemple #2
0
 public LaboratoryService(ILaboratoryRepository iLaboratoryRepository, ILaboratoryMapper iLaboratoryMapper)
 {
     _iLaboratoryRepository = iLaboratoryRepository;
     _iLaboratoryMapper     = iLaboratoryMapper;
 }
Exemple #3
0
 public AssignmentMapper(ILaboratoryMapper laboratoryMapper, ILaboratoryService laboratoryService)
 {
     _iLaboratoryMapper = laboratoryMapper;
     _iLaboratoryService = laboratoryService;
 }