New-OMIS/Modules/Employee/app/Repositories/EmployeeInterface.php

16 lines
387 B
PHP
Raw Permalink Normal View History

2024-04-07 17:39:18 +05:45
<?php
namespace Modules\Employee\Repositories;
interface EmployeeInterface
{
public function findAll();
public function getEmployeeById($employeeId);
2024-04-10 15:15:24 +05:45
public function getEmployeeByEmail($email);
2024-04-07 17:39:18 +05:45
public function delete($employeeId);
public function create($EmployeeDetails);
public function update($employeeId, array $newDetails);
2024-04-11 16:37:12 +05:45
public function pluck();
2024-04-07 17:39:18 +05:45
}