VPR_Schnittstelle/Controller/istTeilController.php

22 lines
351 B
PHP
Raw Permalink Normal View History

2023-12-06 08:57:17 +01:00
<?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);
}
}
?>