@icure/cardinal-prescription-be-angular
Version:
This is a Belgian-specific Angular application for healthcare professionals to manage electronic prescriptions with SAM. Created by iCure.
16 lines (15 loc) • 897 B
TypeScript
import { FhcService } from '../../../shared/services/api/fhc.service';
import { PrescriptionFormType } from '../../types';
import { MedicationType, PrescribedMedicationType } from '../../../shared/types';
import * as i0 from "@angular/core";
export declare class CreatePrescriptionService {
private fhcService;
constructor(fhcService: FhcService);
createPrescribedMedication(formValues: PrescriptionFormType, prescribedMedication?: PrescribedMedicationType | undefined, medicationToPrescribe?: MedicationType | undefined): PrescribedMedicationType[];
private createSinglePrescribedMedication;
private createMultiplePrescribedMedications;
private createMedicationForPrescription;
private determineMedicationData;
static ɵfac: i0.ɵɵFactoryDeclaration<CreatePrescriptionService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<CreatePrescriptionService>;
}