Files
new_raffles/Modules/PMS/app/Repositories/KanbanColumnInterface.php
2025-07-27 17:40:56 +05:45

15 lines
356 B
PHP

<?php
namespace Modules\PMS\Repositories;
interface KanbanColumnInterface
{
public function findAll();
public function getKanbanColumnById($clientId);
public function delete($clientId);
public function create($clientDetails);
public function update($clientId, array $newDetails);
public function pluck(callable $query = null);
}