Esempio n. 1
0
 public void ExaminePatient(Nurse NR, WardBoy WB, Patient objPatient)
 {
     NR.AssistDoctor();
     WB.ArrangeWards();
     //Doctor Takes A Look At Patient Symptoms And Allergies
     //LookUpProblems();
     //LookUpAllergies();
     ProvideTreatment(objPatient);
 }
Esempio n. 2
0
        public void ExaminePatient(string PatientInfo)
        {
            PatientCount++;
            NR.AssistDoctor();
            WB.ArrangeWards();
            Treatment T = new Treatment();

            T.Dose       = "1-0-1";
            T.Medication = "Aspirin";
            Problems PR = new Problems();

            PR.CheckSymptoms();
        }