Files
new_raffles/Modules/Employee/app/Interfaces/EmployeeInterface.php
2025-07-27 17:40:56 +05:45

11 lines
174 B
PHP

<?php
namespace Modules\Employee\Interfaces;
use App\Interfaces\ModelInterface;
interface EmployeeInterface extends ModelInterface
{
public function terminate($id);
}