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