CollectionPointSearchRequest.php 970 B

123456789101112131415161718192021222324252627282930313233
  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\Delivery;
  6. use Temando\Shipping\Api\Data\Delivery\CollectionPointSearchRequestInterface;
  7. use Temando\Shipping\Model\ResourceModel\Db\NoSequenceDb;
  8. use Temando\Shipping\Setup\SetupSchema;
  9. /**
  10. * Temando Collection Point Search Request Resource Model
  11. *
  12. * @package Temando\Shipping\Model
  13. * @author Benjamin Heuer <benjamin.heuer@netresearch.de>
  14. * @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
  15. * @link https://www.temando.com/
  16. */
  17. class CollectionPointSearchRequest extends NoSequenceDb
  18. {
  19. /**
  20. * Resource initialization
  21. *
  22. * @return void
  23. */
  24. protected function _construct()
  25. {
  26. $this->_init(
  27. SetupSchema::TABLE_COLLECTION_POINT_SEARCH,
  28. CollectionPointSearchRequestInterface::SHIPPING_ADDRESS_ID
  29. );
  30. }
  31. }