This commit is contained in:
Avapox
2023-12-06 08:57:17 +01:00
parent 782311304e
commit 55c9fe1c51
2 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
// Erstellt durch Stefan Groß
namespace kinderverwaltung\Controller;
class istTeilController {
private $db;
public function __construct()
{
$this-> db = new istTeilModel();
}
public function getBestellung(){
$result = $this->db->getBestellung();
return json_encode($result);
}
}
?>