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\OrderCollectionPointInterface;
- /**
- * @package Temando\Shipping\Model
- * @author Christoph Aßmann <christoph.assmann@netresearch.de>
- * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
- * @link https://www.temando.com/
- */
- interface OrderCollectionPointRepositoryInterface
- {
- /**
- * Load collection point by shipping address id.
- *
- * @param int $addressId
- * @return OrderCollectionPointInterface
- * @throws NoSuchEntityException
- */
- public function get($addressId);
- /**
- * Save collection point.
- *
- * @param OrderCollectionPointInterface $collectionPoint
- * @return OrderCollectionPointInterface
- * @throws CouldNotSaveException
- */
- public function save(OrderCollectionPointInterface $collectionPoint);
- }
|