
In this lab we will be implementing abstract and sealed classes, protected properties, and virtual methods.
Create any button(s) and button click event handler(s) in the WPF window designer (if specified in the class diagram).

// Create Sam.
// Create the Como Zoo.
// Set birthing room temperature.
// Add Sam to the zoo.
// Create Flora
// Add Flora to the zoo.
// Create Brutus and add him to the zoo.
// Create Coco.
// Make Coco pregnant.
// Add Coco to the zoo.
// Create Paddy and add him to the zoo.
// Create Bella.
// Make Bella pregnant.
// Add Bella to the zoo.
// Create Buzz and add him to the zoo.
// Create Sally and add her to the zoo.
// Create Fred and add him to the zoo.


Change the restroom capacity value which is passed into the Zoo's constructor from the newZooButton_Click() method from 4 to 6. Ensure that the created Restroom objects now contain the new value of 6. Once you have proven that the code works as intended, change the value in the newZooButton_Click() method back to 4.
