initial commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
<?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);
|
||||
}
|
||||
Reference in New Issue
Block a user