DispatchRepositoryInterface.php 677 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
  4. */
  5. namespace Temando\Shipping\Model\ResourceModel\Repository;
  6. /**
  7. * Temando Dispatch Repository Interface.
  8. *
  9. * Access dispatch/completion documents.
  10. *
  11. * @package Temando\Shipping\Model
  12. * @author Christoph Aßmann <christoph.assmann@netresearch.de>
  13. * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
  14. * @link https://www.temando.com/
  15. */
  16. interface DispatchRepositoryInterface
  17. {
  18. /**
  19. * @param string $dispatchId
  20. * @return \Temando\Shipping\Model\DispatchInterface
  21. */
  22. public function getById($dispatchId);
  23. }