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.

25 lines
720B

  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Product;
  3. use Lc\CaracoleBundle\Model\Product\ProductFamilyInterface;
  4. use Lc\CaracoleBundle\Model\Product\ProductFamilyModel;
  5. use Lc\CaracoleBundle\Repository\SectionStoreTrait;
  6. use Lc\CaracoleBundle\Resolver\Price\PriceResolver;
  7. use Lc\CaracoleBundle\Solver\Price\PriceSolver;
  8. use Lc\SovBundle\Repository\AbstractStore;
  9. class ProductFamilyStore extends AbstractStore
  10. {
  11. use SectionStoreTrait;
  12. protected ProductFamilyRepositoryQuery $query;
  13. protected PriceSolver $priceSolver;
  14. public function __construct(ProductFamilyRepositoryQuery $query, PriceSolver $priceSolver)
  15. {
  16. $this->query = $query;
  17. $this->priceSolver = $priceSolver;
  18. }
  19. }