public CourseController(LeLeContext context, ICourseRepository courseRepository, IDepartmentRepository departmentRepository)
 {
     _courseRepository     = courseRepository;
     _departmentRepository = departmentRepository;
 }
 public EnrollmentRepository(LeLeContext leLeContext) : base(leLeContext)
 {
 }
 public DepartmentRepository(LeLeContext leLeContext) : base(leLeContext)
 {
 }
 public InstructorRepository(LeLeContext leLeContext) : base(leLeContext)
 {
 }
 public CourseRepository(LeLeContext leLeContext) : base(leLeContext)
 {
 }
示例#6
0
 public Repository(LeLeContext leLeContext)
 {
     LeLeContext = leLeContext;
 }
示例#7
0
 public StudentRepository(LeLeContext leLeContext) : base(leLeContext)
 {
 }