- <?php
-
- namespace Lc\CaracoleBundle\Repository\PointSale;
-
- class PointSaleStore implements PointSaleStoreInterface
- {
- protected PointSaleRepositoryQueryInterface $query;
-
- public function __construct(PointSaleRepositoryQueryInterface $query)
- {
- $this->query = $query;
- }
- }
|