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