13 lines
360 B
PHP
13 lines
360 B
PHP
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
use App\Services\DateRange;
|
|
use Illuminate\Support\Collection;
|
|
|
|
interface PatientProviderInterface
|
|
{
|
|
public function getPatients(string $type, int $branchId, DateRange $dateRange, array $options = []): Collection;
|
|
public function getCount(string $type, int $branchId, DateRange $dateRange, array $options = []): int;
|
|
}
|