* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @link https://www.temando.com/ */ interface CollectionPointSearchRepositoryInterface { /** * @param int $quoteAddressId * @return CollectionPointSearchRequestInterface * @throws NoSuchEntityException */ public function get($quoteAddressId); /** * @param CollectionPointSearchRequestInterface $searchRequest * @return CollectionPointSearchRequestInterface * @throws CouldNotSaveException */ public function save($searchRequest); /** * @param int $quoteAddressId * @return bool * @throws CouldNotDeleteException */ public function delete($quoteAddressId); }