
In this assignment 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 dinner menu and store in local variable.
// Create daily lunch special (pot roast) and store in local variable.
// Create lunch menu and store in local variable.
// Add menu items to lunch menu.
// Create Moms.
// Create The Regular.
// Define waitress variable.
// Create waitress (Svanhilde).
// Add Svanhilde to the waitress list.
// Create waitress (Heidi).
// Add Heidi to the waitress list.

Change the breadbasket capacity value which is passed into the Restaurant's constructor from the newRestaurantButton_Click() method from 30 to 45. Ensure that the created Basket objects now contain the new value of 45. Once you have proven that the code works as intended, change the value in the newRestaurantButton_Click() method back to 30.
