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

13 lines
319 B
PHP

<?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);
}