ProfilDeCotisationRepository.php 392 Bytes
<?php

namespace App\Repository;

use App\Entity\ProfilDeCotisation;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;

class ProfilDeCotisationRepository extends ServiceEntityRepository
{
    public function __construct(ManagerRegistry $registry)
    {
        parent::__construct($registry, ProfilDeCotisation::class);
    }
}