add conferences, debriefings, projects, theme types, establishment groups
This commit is contained in:
parent
2a1a7d40f5
commit
3730d8d5cc
34 changed files with 2249 additions and 0 deletions
15
src/Repository/ConferenceRepositoryQuery.php
Normal file
15
src/Repository/ConferenceRepositoryQuery.php
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
namespace App\Repository;
|
||||
|
||||
use App\Core\Repository\RepositoryQuery;
|
||||
use Knp\Component\Pager\PaginatorInterface;
|
||||
use App\Repository\ConferenceRepository as Repository;
|
||||
|
||||
class ConferenceRepositoryQuery extends RepositoryQuery
|
||||
{
|
||||
public function __construct(Repository $repository, PaginatorInterface $paginator)
|
||||
{
|
||||
parent::__construct($repository, 'c', $paginator);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue