You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ProductPointSaleRepository.php 588B

пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
пре 1 година
12345678910111213141516171819202122232425
  1. <?php
  2. namespace domain\Product\ProductPointSale;
  3. use domain\_\AbstractRepository;
  4. class ProductPointSaleRepository extends AbstractRepository
  5. {
  6. protected ProductPointSaleRepositoryQuery $query;
  7. public function loadDependencies(): void
  8. {
  9. $this->loadQuery(ProductPointSaleRepositoryQuery::class);
  10. }
  11. public function getDefaultOptionsSearch(): array
  12. {
  13. return [
  14. self::WITH => ['product', 'pointSale'],
  15. self::JOIN_WITH => [],
  16. self::ORDER_BY => '',
  17. self::ATTRIBUTE_ID_PRODUCER => ''
  18. ] ;
  19. }
  20. }