Files
cabinet/src/Repository/PriceDepartmentRepository.php
T
2026-05-28 12:09:28 +03:00

22 lines
706 B
PHP

<?php
namespace App\Repository;
use App\Entity\PriceDepartment;
use Doctrine\Bundle\DoctrineBundle\Repository\ServiceEntityRepository;
use Doctrine\Persistence\ManagerRegistry;
/**
* @method PriceDepartment|null find($id, $lockMode = null, $lockVersion = null)
* @method PriceDepartment|null findOneBy(array $criteria, array $orderBy = null)
* @method PriceDepartment[] findAll()
* @method PriceDepartment[] findBy(array $criteria, array $orderBy = null, $limit = null, $offset = null)
*/
class PriceDepartmentRepository extends ServiceEntityRepository
{
public function __construct(ManagerRegistry $registry)
{
parent::__construct($registry, PriceDepartment::class);
}
}