
Moms has two waitresses, Svanhilde and Heidi. Svanhilde is in charge of waiting on Frank's table. She will write out his meal ticket. Frank will also have access to his ticket after he is done eating.
Please define the new classes and the list as needed, and create instances of these objects and set their fields.
Create any button(s) and button click event handler(s) in the WPF window designer (if specified in the class diagram).

// Create an instance of the Restaurant class.
// Set field values of Moms.
// Set field values of the dinner menu.
// Set field values of the lunch menu.
// Set field values of the owner.
// Set field values of the breadbasket.
// Set field values of the bread oven.
// Set field values of the gas stove.
// Set field values of the soup vat.
// Set field values of the regular.
// Set field values of the regular's ticket.
// Define a temporary menu item variable.
// Create an instance of the MenuItem class (coffee).
// Set field values of the coffee.
// Add the coffee to the ticket.
// Create an instance of the MenuItem class (meatloaf).
// Set field values of the meatloaf.
// Add the meatloaf to the ticket.
// Define a temporary waitress variable.
// Create an instance of the Waitress class (Svanhilde).
// Set field values of Svanhilde.
// Add Svanhilde to the restaurant's list of waitresses.
// Create an instance of the Waitress class (Heidi).
// Set field values of Heidi.
// Add Heidi to the restaurant's list of waitresses.
