public function deleteStudentFromSubject($id, $subject, $class)
 {
     $subjectName = $this->connection->getSubjectName($subject)["subject_name"];
     $this->connection->removeStudentFromAssessmentEntity($id, $class, $subjectName);
     parent::queryStringDelete("DELETE FROM StudentsSubjects WHERE student_id = {$id} AND subject_id = {$subject}");
     return;
 }
 public function __construct()
 {
     parent::__construct();
     $this->connection = new RegisterClass();
 }
 public function __construct()
 {
     parent::__construct();
     $this->connection = new AssignStaff();
 }
 public function __construct()
 {
     parent::__construct();
     $this->connection = new RegisterGeneral();
 }
Beispiel #5
0
 public function __construct()
 {
     $this->connection = new Setup();
     parent::__construct();
 }
 public function __construct()
 {
     parent::__construct();
     $this->connection = new PrepareResult();
     $this->result_processor = new ResultProcessing();
 }
 public function __construct()
 {
     parent::__construct();
     $this->connection = new ResultProcessing();
 }