Compare commits
No commits in common. "a915732afd542d297e238a2b296d3b868bc12801" and "6e52a22691808c02da1db9ddd1f2966db0bed98c" have entirely different histories.
a915732afd
...
6e52a22691
@ -16,7 +16,6 @@ class BenutzerController{
|
||||
$this->db = new BenutzerModel();
|
||||
}
|
||||
|
||||
// Updated einen Benutzer
|
||||
public function updateBenutzer($elternId, $data){
|
||||
|
||||
$result = $this->db->updateBenutzer($benutzerId, $data);
|
||||
@ -25,7 +24,6 @@ class BenutzerController{
|
||||
|
||||
}
|
||||
|
||||
// Fügt einen Benutzer in die Datenbank hinzu
|
||||
public function insertBenutzer($data){
|
||||
$result = $this->db->insertBenutzer($data)
|
||||
|
||||
|
@ -24,21 +24,18 @@ class KindController{
|
||||
return json_encode($result);
|
||||
}
|
||||
|
||||
// Updated ein Kind
|
||||
public function updateKind($kindId, $data){
|
||||
$result = $this->db->updateKind($kindId, $data);
|
||||
|
||||
return json_encode($result);
|
||||
}
|
||||
|
||||
// Fügt ein Kind hinzu
|
||||
public function addKind($data){
|
||||
$result = $this->db->addKind($data);
|
||||
|
||||
return json_encode($data);
|
||||
}
|
||||
|
||||
// Löscht ein Kind
|
||||
public function deleteKind($kindId){
|
||||
$result = $this->db->deleteKind($kindId);
|
||||
|
||||
|
@ -10,15 +10,6 @@ use kindergartenverwaltung\Model\BenutzerModel;
|
||||
|
||||
class BenutzerModel extends Database{
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* Updated einen Benutzer
|
||||
*
|
||||
* @param $elternId Die Id des Elternaccounts
|
||||
* @param $data Die gegebenen Daten
|
||||
*
|
||||
*/
|
||||
public function updateBenutzer($elternId, $data){
|
||||
$pdo = $this->linkDB();
|
||||
|
||||
@ -49,13 +40,6 @@ class BenutzerModel extends Database{
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
*
|
||||
* Fügt einen neuen Benutzer in der Datenbank hinzu
|
||||
*
|
||||
* @param $data Die gegebenen Daten
|
||||
*
|
||||
*/
|
||||
public function insertBenutzer($data){
|
||||
$pdo = $this->linkDB();
|
||||
|
||||
|
@ -38,7 +38,6 @@ public function getKind($parentId){
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* Updated die Daten eines Kindes
|
||||
*
|
||||
* @param $kindId Id des Kindes
|
||||
@ -77,9 +76,6 @@ public function updateKind($kindId, $data){
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* Fügt ein Kind mit gegebenen Daten in die Datenbank hinzu
|
||||
*
|
||||
* @param $data Die Daten für das neue Kind
|
||||
*/
|
||||
public function addKind($data){
|
||||
@ -116,13 +112,7 @@ public function addKind($data){
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* Löscht ein Kind mit einer gegebenen Id aus der Datenbank
|
||||
*
|
||||
* @param $kindId Die Id des zu löschenden Kindes
|
||||
*
|
||||
*/
|
||||
|
||||
public function deleteKind($kindId){
|
||||
$pdo = $this->linkDB();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user