|
123456789101112131415 |
- <?php
-
- namespace Lc\CaracoleBundle\Repository\Product;
-
- use App\Entity\Product\Product;
- use Doctrine\Persistence\ManagerRegistry;
- use Lc\SovBundle\Repository\AbstractRepository;
-
- class ProductRepository extends AbstractRepository
- {
- public function __construct(ManagerRegistry $registry)
- {
- parent::__construct($registry, Product::class);
- }
- }
|