16 lines
387 B
PHP
16 lines
387 B
PHP
<?php
|
|
|
|
namespace Modules\Employee\Repositories;
|
|
|
|
interface EmployeeInterface
|
|
{
|
|
public function findAll();
|
|
public function getEmployeeById($employeeId);
|
|
public function getEmployeeByEmail($email);
|
|
public function delete($employeeId);
|
|
public function create($EmployeeDetails);
|
|
public function update($employeeId, array $newDetails);
|
|
public function pluck();
|
|
|
|
}
|