コード例 #1
0
ファイル: Patient.cs プロジェクト: vfonte91/SOAP
 public Patient()
 {
     _patientId = -1;
     _patientInfo = new PatientInformation();
     _monitoring = new List<Monitoring>();
     _bloodwork = new Bloodwork();
     _clinicalFindings = new ClinicalFindings();
     _anestheticPlan = new AnestheticPlan();
     _maintenance = new Maintenance();
 }
コード例 #2
0
ファイル: Service.cs プロジェクト: vfonte91/SOAP
 public AnestheticPlan GetAnestheticPlan(int patientId)
 {
     AnestheticPlan anesPlan = new AnestheticPlan();
     anesPlan.PreMedications = GetAnestheticPreMedications(patientId);
     anesPlan.InjectionPlan = GetAnestheticPlanInjection(patientId);
     anesPlan.InhalantPlan = GetAnestheticPlanInhalant(patientId);
     return anesPlan;
 }