123456789101112131415161718192021222324252627282930313233343536 |
- <?php
- /**
- * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
- */
- namespace Temando\Shipping\Model\ResourceModel\Repository;
- use Magento\Framework\Exception\CouldNotSaveException;
- use Magento\Framework\Exception\NoSuchEntityException;
- use Temando\Shipping\Api\Data\Delivery\OrderPickupLocationInterface;
- /**
- * @package Temando\Shipping\Model
- * @author Sebastian Ertner <sebastian.ertner@netresearch.de>
- * @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);
- }
|