Files
onboard/app/Contracts/PatientProviderInterface.php
2026-04-24 16:46:10 +09:00

14 lines
361 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;
}