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