<?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);
    }
}
?>