Files
myocardial/app/Interfaces/PatientRepositoryInterface.php
T
2026-06-23 13:28:38 +07:00

16 lines
443 B
PHP

<?php
namespace App\Interfaces;
interface PatientRepositoryInterface
{
public function getAllPatients();
public function getPatientById($patientId);
public function getManyPatientById($patientIds);
public function deletePatient($patientId);
public function createPatient(array $patientData);
public function updatePatient($patientId, array $patientData);
public function getAllPatientsExceptDoctor($doctorId);
}