Files
onboard/app/Contracts/PatientProviderInterface.php
2026-03-25 17:37:32 +09:00

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;
}