Esempio n. 1
0
 public Patient()
 {
     _patientId = -1;
     _patientInfo = new PatientInformation();
     _monitoring = new List<Monitoring>();
     _bloodwork = new Bloodwork();
     _clinicalFindings = new ClinicalFindings();
     _anestheticPlan = new AnestheticPlan();
     _maintenance = new Maintenance();
 }
Esempio n. 2
0
 public AnestheticPlan GetAnestheticPlan(int patientId)
 {
     AnestheticPlan anesPlan = new AnestheticPlan();
     anesPlan.PreMedications = GetAnestheticPreMedications(patientId);
     anesPlan.InjectionPlan = GetAnestheticPlanInjection(patientId);
     anesPlan.InhalantPlan = GetAnestheticPlanInhalant(patientId);
     return anesPlan;
 }