public LectionRepository(EduDBContext context)
 {
     this._db = context;
 }
 public TestRepository(EduDBContext context)
 {
     this._db = context;
 }
 public ScheduledEventRepository(EduDBContext context)
 {
     this._db = context;
 }
 public CourseRepository(EduDBContext context)
 {
     this._db = context;
 }
 public UnitOfWork(string connectString)
 {
     _db = new EduDBContext(connectString);
 }
 public StudentRepository(EduDBContext context)
 {
     this._db = context;
 }