<?php

namespace App\Repository;

use App\Entity\{{className}};
use Doctrine\Persistence\ManagerRegistry;
use Parthenon\Common\Repository\CustomServiceRepository;

class {{className}}ServiceRepository extends CustomServiceRepository
{
    public function __construct(ManagerRegistry $registry)
    {
        parent::__construct($registry, {{className}}::class);
    }
}
