Пример #1
0
 public override void CarePatient(Patient currentPatient)
 {
     currentPatient.HealthLevel += 1;
     Console.WriteLine("The Nurse has cared for the patient");
     Console.ReadLine();
 }
Пример #2
0
 public override void DrawBlood(Patient currentPatient)
 {
     currentPatient.BloodLevel -= 1;
     Console.WriteLine("The Nurse has drawn blood from the patient.");
     Console.ReadLine();
 }