|
- <?php
-
- namespace Lc\CaracoleBundle\Repository\PointSale;
-
- use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
- use Doctrine\Persistence\ManagerRegistry;
- use Lc\CaracoleBundle\Model\PointSale\PointSaleInterface;
-
-
- class PointSaleRepository extends ServiceEntityRepository
- {
- public function __construct(ManagerRegistry $registry)
- {
- parent::__construct($registry, PointSaleInterface::class);
- }
- }
|