1 | <?php |
||
20 | class OrganizationRepository extends EntityRepository implements OrganizationRepositoryInterface |
||
21 | { |
||
22 | /** |
||
23 | * {@inheritdoc} |
||
24 | */ |
||
25 | public function findOneByName($name) |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function findOneByCode($code) |
||
47 | |||
48 | /** |
||
49 | * {@inheritdoc} |
||
50 | */ |
||
51 | public function findAvailable() |
||
59 | } |
||
60 |