Профиль хирургии
This commit is contained in:
12
app/Contracts/PatientProviderInterface.php
Normal file
12
app/Contracts/PatientProviderInterface.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Contracts;
|
||||
|
||||
use App\Services\DateRange;
|
||||
use Illuminate\Support\Collection;
|
||||
|
||||
interface PatientProviderInterface
|
||||
{
|
||||
public function getPatients(string $type, int $branchId, DateRange $dateRange, array $options = []): Collection;
|
||||
public function getCount(string $type, int $branchId, DateRange $dateRange, array $options = []): int;
|
||||
}
|
||||
Reference in New Issue
Block a user