Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- <?php
-
- namespace Lc\CaracoleBundle\Repository\Reduction;
-
- use Lc\SovBundle\Repository\AbstractStore;
-
- class ReductionCatalogStore extends AbstractStore
- {
- protected ReductionCatalogRepositoryQuery $query;
-
- public function __construct(ReductionCatalogRepositoryQuery $query)
- {
- $this->query = $query;
- }
-
- public function getByProductFamily($productFamily){
- $query = $this->query->create();
- $query->filterProductFamily($productFamily);
- $query->filterStatus(true);
- return $query->findOne();
-
- }
- }
|