Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

18 lines
439B

  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Product;
  3. use Lc\CaracoleBundle\Model\Product\ProductFamilyInterface;
  4. use Lc\CaracoleBundle\Resolver\Price\PriceResolver;
  5. use Lc\SovBundle\Repository\AbstractStore;
  6. class ProductStore extends AbstractStore
  7. {
  8. protected ProductRepositoryQuery $query;
  9. public function __construct(ProductRepositoryQuery $query, PriceResolver $priceResolver)
  10. {
  11. $this->query = $query;
  12. }
  13. }