public StudentCoursesController(IDbManipulation <StudentCourse> repository, IDbManipulation <Course> course, IDbManipulation <Student> student, ApplicationDbContext context)
 {
     _repository = repository;
     //_courseRepository = course;
     //_studentRepository = student;
     _context = context;
 }
Exemplo n.º 2
0
 public SubjectsController(IDbManipulation <Subject> repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }
 public RoomsController(IDbManipulation <Room> repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }
Exemplo n.º 4
0
 public LecturersController(IDbManipulation <Lecturer> repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }
 public CoursesController(IDbManipulation <Course> repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }
Exemplo n.º 6
0
 public StudentsController(IDbManipulation <Student> repository, IMapper mapper)
 {
     _repository = repository;
     _mapper     = mapper;
 }