public void GenerateBed() { // Loop to generate beds for (int i = 0; i < beds.Length; i++) { beds[i] = new Bed(); } }
//Method to Assign a patient to a bed public void AssignPatient(Patient p, Bed b) { //Sets the current patient dependant on the Patient passed into the method currentPatient = p; }