handleCommand($command); } else if ($module == 'queue') { $queueContent = new QueueContent(); $queueContent->handleCommand($command); } else if ($module == 'products') { $products = new Products(); $products->handleCommand($command); } else if ($module == 'roomtables') { $roomtables = new Roomtables(); $roomtables->handleCommand($command); } else if ($module == 'reports') { $reports = new Reports(); $reports->handleCommand($command); } else if ($module == 'bill') { $reports = new Bill(); $reports->handleCommand($command); } else if ($module == 'closing') { $closingModule = new Closing(); $closingModule->handleCommand($command); } else if ($module == 'printqueue') { $printQueue = new PrintQueue(); $printQueue->handleCommand($command); } else if ($module == 'feedback') { $feedback = new Feedback(); $feedback->handleCommand($command); } else if ($module == 'reservation') { $reservation = new Reservation(); $reservation->handleCommand($command); } else if ($module == 'rating') { $rating = new Rating(); $rating->handleCommand($command); } ?>