first change
This commit is contained in:
19
Modules/PMS/app/Repositories/TaskInterface.php
Normal file
19
Modules/PMS/app/Repositories/TaskInterface.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\PMS\Repositories;
|
||||
|
||||
interface TaskInterface
|
||||
{
|
||||
public function findAll($filters = [], $limit = null, $offset = null);
|
||||
public function getTaskById($clientId);
|
||||
public function delete($clientId);
|
||||
public function create($clientDetails);
|
||||
public function update($clientId, array $newDetails);
|
||||
public function pluck();
|
||||
public function getAllTasks($filters = []);
|
||||
public function findAllWithRelations(array $relations = [], $limit = null);
|
||||
public function getTaskCountsByCategory($userId = null);
|
||||
|
||||
|
||||
// public function getTaskbyMembers($employee_id);
|
||||
}
|
Reference in New Issue
Block a user