public AssignmentRepository(CustomMoodleDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public StudentRepository(CustomMoodleDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Example #3
0
 public DepartmentRepository(CustomMoodleDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
 public InstructorRepository(CustomMoodleDbContext dbContext)
 {
     this.dbContext = dbContext;
 }
Example #5
0
 public CourseRepository(CustomMoodleDbContext dbContext)
 {
     this.dbContext = dbContext;
 }