Files
onboard/app/Domain/Patient/Contracts/PatientRepositoryInterface.php
2026-07-31 17:19:03 +09:00

12 lines
248 B
PHP

<?php
namespace App\Domain\Patient\Contracts;
use Illuminate\Support\Collection;
interface PatientRepositoryInterface
{
public function getCurrentByDepartmentId(int $departmentId): ?Collection;
public function getById(int $patientId);
}