itemResource = $itemResource; $this->itemFactory = $itemFactory; $this->searchResultFactory = $searchResultFactory; $this->collectionProcessor = $collectionProcessor; } /** * @inheritdoc */ public function getList(SearchCriteriaInterface $searchCriteria) { $searchResult = $this->searchResultFactory->create(); $this->collectionProcessor->process($searchCriteria, $searchResult); $searchResult->setSearchCriteria($searchCriteria); return $searchResult; } /** * @inheritdoc */ public function get($id) { $entity = $this->itemFactory->create(); $this->itemResource->load($entity, $id); return $entity; } /** * @inheritdoc */ public function delete(InvoiceItemInterface $entity) { try { $this->itemResource->delete($entity); } catch (\Exception $e) { throw new CouldNotDeleteException(__('Could not delete the invoice item.'), $e); } return true; } /** * @inheritdoc */ public function save(InvoiceItemInterface $entity) { try { $this->itemResource->save($entity); } catch (\Exception $e) { throw new CouldNotSaveException(__('Could not save the invoice item.'), $e); } return $entity; } }