mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-19 00:34:24 +00:00
48 lines
1.5 KiB
PHP
48 lines
1.5 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Chill is a software for social workers
|
|
*
|
|
* For the full copyright and license information, please view
|
|
* the LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Chill\PersonBundle\Repository;
|
|
|
|
use Chill\MainBundle\Entity\Scope;
|
|
use Chill\MainBundle\Entity\User;
|
|
use Chill\MainBundle\Entity\UserJob;
|
|
use Chill\PersonBundle\Entity\AccompanyingPeriod;
|
|
use Chill\PersonBundle\Entity\Person;
|
|
|
|
interface AccompanyingPeriodACLAwareRepositoryInterface
|
|
{
|
|
/**
|
|
* @param array|UserJob[] $jobs
|
|
* @param array|Scope[] $services
|
|
*/
|
|
public function countByUnDispatched(array $jobs, array $services, array $administrativeLocations): int;
|
|
|
|
public function countByUserOpenedAccompanyingPeriod(?User $user): int;
|
|
|
|
public function findByPerson(
|
|
Person $person,
|
|
string $role,
|
|
?array $orderBy = [],
|
|
?int $limit = null,
|
|
?int $offset = null
|
|
): array;
|
|
|
|
/**
|
|
* @param array|UserJob[] $jobs if empty, does not take this argument into account
|
|
* @param array|Scope[] $services if empty, does not take this argument into account
|
|
*
|
|
* @return array|AccompanyingPeriod[]
|
|
*/
|
|
public function findByUnDispatched(array $jobs, array $services, array $administrativeLocations, ?int $limit = null, ?int $offset = null): array;
|
|
|
|
public function findByUserOpenedAccompanyingPeriod(?User $user, array $orderBy = [], int $limit = 0, int $offset = 50): array;
|
|
}
|