renaming of export to avoid confusion + start of agent traitant filter

This commit is contained in:
2022-07-26 14:43:21 +02:00
parent b12e5e78b6
commit d5d38053cd
6 changed files with 112 additions and 22 deletions

View File

@@ -35,6 +35,11 @@ final class AccompanyingPeriodWorkRepository implements ObjectRepository
$this->repository = $entityManager->getRepository(AccompanyingPeriodWork::class);
}
public function createQueryBuilder(string $alias, ?string $indexBy = null): QueryBuilder
{
return $this->repository->createQueryBuilder($alias, $indexBy);
}
public function countByAccompanyingPeriod(AccompanyingPeriod $period): int
{
return $this->repository->countByAccompanyingPeriod($period);