historyResource = $historyResource; $this->historyFactory = $historyFactory; $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->historyFactory->create(); $this->historyResource->load($entity, $id); return $entity; } /** * @inheritdoc */ public function delete(OrderStatusHistoryInterface $entity) { try { $this->historyResource->delete($entity); } catch (\Exception $e) { throw new CouldNotDeleteException(__('Could not delete the order status history.'), $e); } return true; } /** * @inheritdoc */ public function save(OrderStatusHistoryInterface $entity) { try { $this->historyResource->save($entity); } catch (\Exception $e) { throw new CouldNotSaveException(__('Could not save the order status history.'), $e); } return $entity; } }