Inhaltsstoff vervollständigt, nicht getestet nicht kommentiert

This commit is contained in:
2023-12-18 08:22:45 +01:00
parent e4003ad37d
commit 78ba32377b
2 changed files with 67 additions and 2 deletions

View File

@@ -6,5 +6,18 @@
use VPR_Schnittstelle\Libary\Msg;
use VPR_Schnittstelle\Model\InhaltsstoffModel;
public function getInhaltsstoff(){
$result=$this->db->getInhaltsstoff();
return json_encode($result);
}
public function insertInhaltsstoff($data){
$result=$this->db->insertInhaltsstoff($data);
return json_encode($result);
}
public function deleteInhaltsstoff($id){
$result=$this->db->deleteInhaltsstoff($id);
return json_encode($result);
}
?>