* * @method Bill|null find($id, $lockMode = null, $lockVersion = null) * @method Bill|null findOneBy(array $criteria, array $orderBy = null) * @method Bill[] findAll() * @method Bill[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null) */ class BillRepository extends ServiceEntityRepository { public function __construct(ManagerRegistry $registry) { parent::__construct($registry, Bill::class); } public function save(Bill $entity, bool $flush = false): void { $this->getEntityManager()->persist($entity); if ($flush) { $this->getEntityManager()->flush(); } } public function remove(Bill $entity, bool $flush = false): void { $this->getEntityManager()->remove($entity); if ($flush) { $this->getEntityManager()->flush(); } } // /** // * @return Bill[] Returns an array of Bill objects // */ // public function findByExampleField($value): array // { // return $this->createQueryBuilder('b') // ->andWhere('b.exampleField = :val') // ->setParameter('val', $value) // ->orderBy('b.id', 'ASC') // ->setMaxResults(10) // ->getQuery() // ->getResult() // ; // } // public function findOneBySomeField($value): ?Bill // { // return $this->createQueryBuilder('b') // ->andWhere('b.exampleField = :val') // ->setParameter('val', $value) // ->getQuery() // ->getOneOrNullResult() // ; // } }