protected function createComponentItemsTable()
 {
     $comp = $this->itemsTableControlFactory->create($this->listingResult);
     $comp->showCheckBoxes();
     $comp->showTableCaption();
     return $comp;
 }
 protected function createComponentItemsTable()
 {
     $comp = $this->itemsTableControlFactory->create($this->listing);
     $comp->showTableCaption($this->listing->description, $this->listing->workedDays, $this->listing->totalWorkedHours, 'Front:Listing:detail', ['id' => $this->listing->listingID]);
     $comp->showCheckBoxes();
     return $comp;
 }
 protected function createComponentItemsTable()
 {
     $comp = $this->itemsTableControlFactory->create($this->listingResult);
     $comp->showActions(__DIR__ . '/templates/actions.latte', ['listingID' => $this->listing->getId()]);
     $comp->showTableCaption();
     return $comp;
 }
 protected function createComponentItemsTable()
 {
     $comp = $this->itemsTableControlFactory->create($this->listing);
     $comp->showActions(__DIR__ . '/templates/actions.latte', ['listingID' => $this->listing->listingID]);
     $comp->showTableCaption($this->listing->description, $this->listing->workedDays, $this->listing->totalWorkedHours);
     return $comp;
 }
 protected function createComponentItemsTable()
 {
     $comp = $this->itemsTableControlFactory->create($this->listingResult);
     $comp->showTableCaption('Front:Listing:detail', ['id' => $this->listing->getId()]);
     $comp->showCheckBoxes();
     return $comp;
 }