Много всего

This commit is contained in:
brusnitsyn
2025-12-12 17:10:05 +09:00
parent 54f36e91fa
commit 98e9f8b52e
25 changed files with 1118 additions and 145 deletions

View File

@@ -0,0 +1,9 @@
<?php
namespace App\Contracts;
interface MedicalHistoryRepositoryInterface
{
public function get(array $filters);
public function search(string $term);
}