15 lines
296 B
PHP
15 lines
296 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Repositories;
|
|
|
|
interface ContactRepositoryInterface extends BaseRepositoryInterface
|
|
{
|
|
function paginate(int $perPage = 15, array $filters = []);
|
|
|
|
function getByClientId(int $clientId);
|
|
|
|
function getByFournisseurId(int $fournisseurId);
|
|
}
|