New-Thanasoft/thanasoft-back/app/Repositories/ContactRepositoryInterface.php
2025-10-20 15:58:25 +03:00

13 lines
242 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);
}