function __construct()
 {
     parent::checkAuth('Hotel-order');
     $this->hid = $_SESSION['manage_hotel_branch'];
     $this->token = $_SESSION['manage_company_token'];
     $this->model = new HotelLgModel();
 }
 function __construct()
 {
     parent::checkAuth('Booking-order');
     $this->hid = $_SESSION['manage_prebook_branch'];
     $this->token = $_SESSION['manage_company_token'];
     $this->model = new BookingLgModel();
 }
 function __construct()
 {
     parent::checkAuth('Dining-order');
     $this->rid = $_SESSION['manage_dine_branch'];
     $this->token = $_SESSION['manage_company_token'];
     $this->model = new RestLgModel();
 }
 function __construct()
 {
     parent::checkAuth('Shop-order');
     $this->sid = $_SESSION['manage_eshop_branch'];
     $this->token = $_SESSION['manage_company_token'];
     $this->model = new ShopLgModel();
 }
 function __construct()
 {
     parent::checkAuth('Booking-order');
 }