initial commit
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Interfaces;
|
||||
|
||||
interface DoctorRepositoryInterface
|
||||
{
|
||||
public function getAllDoctors();
|
||||
public function getDoctorById($doctorId);
|
||||
public function deleteDoctor($doctorId);
|
||||
public function createDoctor(array $doctorData);
|
||||
public function updateDoctor($doctorId, array $doctorData);
|
||||
}
|
||||
Reference in New Issue
Block a user