New-Thanasoft/thanasoft-back/app/Repositories/ContactRepositoryInterface.php
2025-10-29 17:17:50 +03:00

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);
}