* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0) * @link https://www.temando.com/ */ interface OrderPickupLocationRepositoryInterface { /** * Load pickup location by shipping address id. * * @param int $addressId * @return OrderPickupLocationInterface * @throws NoSuchEntityException */ public function get($addressId); /** * Save pickup location. * * @param OrderPickupLocationInterface $collectionPoint * @return OrderPickupLocationInterface * @throws CouldNotSaveException */ public function save(OrderPickupLocationInterface $collectionPoint); }