public function getTransportsPrice(int $posId, int $websiteId): array
{
try {
$results = $this->getAll(['pos_id' => $posId, 'website_id' => $websiteId]);
return array_map(static fn (array $row) => TransportPriceDTO::fromArray($row), $results);
} catch (Throwable $exception) {
return [];
}
}