Работа над журналом для ст. мед сестер

This commit is contained in:
brusnitsyn
2026-05-04 17:11:16 +09:00
parent f107ebd167
commit 7a58812072
61 changed files with 3532 additions and 1163 deletions

View File

@@ -0,0 +1,22 @@
<?php
namespace App\Infrastructure\Reports\Services;
use App\Models\Department;
use App\Services\UnifiedPatientService;
use Illuminate\Support\Collection;
/**
* Search-фасад для клинических справочных выборок отчётного интерфейса.
*/
class ReportClinicalSearchService
{
public function __construct(
private readonly UnifiedPatientService $unifiedPatientService,
) {}
public function searchMisPatientsForDepartment(Department $department, string $query): Collection
{
return $this->unifiedPatientService->searchMisPatients($department, $query);
}
}