New-Thanasoft/thanasoft-back/app/Repositories/ClientLocationRepositoryInterface.php
2025-10-21 12:37:36 +03:00

11 lines
186 B
PHP

<?php
declare(strict_types=1);
namespace App\Repositories;
interface ClientLocationRepositoryInterface extends BaseRepositoryInterface
{
function getByClientId(int $client_id);
}