15 lines
322 B
PHP
15 lines
322 B
PHP
<?php
|
|
|
|
namespace Modules\PMS\Repositories;
|
|
|
|
interface ClientInterface
|
|
{
|
|
public function findAll();
|
|
public function getClientById($clientId);
|
|
public function delete($clientId);
|
|
public function create($clientDetails);
|
|
public function update($clientId, array $newDetails);
|
|
public function pluck();
|
|
|
|
}
|