12 lines
248 B
PHP
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);
|
|
}
|