[Solved]Design Restaurant Class Help Manage Multiple Restaurants Menus Equiremen Class Contains 1 Q37297620

program is C#
Design a restaurant class to help manage multiple restaurants and their menus equiremen The class contains: 1) A static int variable named storeCounter that starts at 1 and increments for each new restaurant item that is created 2) A string array called Menu 3) An int variable called StoreID 4) A Boolean variable called isOpen 5) A no-argument constructor that performs the following a. Sets storelD to storeCounter, then increments storeCounter b. Sets isOpen to true c. Sets Menu to be size 3 with no values inside. 6) A two-argument constructor that has an int parameter and a boolean parameter, and performs the following Sets storelD to storeCounter, then increments storeCounter Sets isOpen to the boolean parameter Sets Menu to be the size of the int value a. b. c. Write the following instance methods: 7) A void method called set Menu) that allows the user to input string values to populate the Menu array of the restaurant calling the method the restaurant calling the method to the following: “Hamburger”, “Hot dog”, and “Pizza” restaurant: StoreD all menu items, and whether the restaurant is open. 8) A void method called setMenuEasy() that sets the first three indexes of the menu array of 9) A void method called restaurantDetails) that prints out the following properties of a If isOpen is true, a restaurant is open. a. In the main method Create 3 new restaurants Create the first restaurant with the default constructor a. b. Create the second restaurant to be open and have a menu size of 4 c. Create the third restaurant to be closed and have a menu size of 3 Call setMenuEasy() for the 1st and 3rd restaurant i Call setMenu() for the 2nd restaurant, add whatever items you want iv. Call restaurantDetails() for all three restaurants Upload the following onto the assignment 10 folder on canvas: a. The.cs file b. A screenshot of the output from tasks ii, ii, and iv Show transcribed image text Design a restaurant class to help manage multiple restaurants and their menus equiremen The class contains: 1) A static int variable named storeCounter that starts at 1 and increments for each new restaurant item that is created 2) A string array called Menu 3) An int variable called StoreID 4) A Boolean variable called isOpen 5) A no-argument constructor that performs the following a. Sets storelD to storeCounter, then increments storeCounter b. Sets isOpen to true c. Sets Menu to be size 3 with no values inside. 6) A two-argument constructor that has an int parameter and a boolean parameter, and performs the following Sets storelD to storeCounter, then increments storeCounter Sets isOpen to the boolean parameter Sets Menu to be the size of the int value a. b. c. Write the following instance methods: 7) A void method called set Menu) that allows the user to input string values to populate the Menu array of the restaurant calling the method the restaurant calling the method to the following: “Hamburger”, “Hot dog”, and “Pizza” restaurant: StoreD all menu items, and whether the restaurant is open. 8) A void method called setMenuEasy() that sets the first three indexes of the menu array of 9) A void method called restaurantDetails) that prints out the following properties of a If isOpen is true, a restaurant is open. a. In the main method Create 3 new restaurants Create the first restaurant with the default constructor a. b. Create the second restaurant to be open and have a menu size of 4 c. Create the third restaurant to be closed and have a menu size of 3 Call setMenuEasy() for the 1st and 3rd restaurant i Call setMenu() for the 2nd restaurant, add whatever items you want iv. Call restaurantDetails() for all three restaurants Upload the following onto the assignment 10 folder on canvas: a. The.cs file b. A screenshot of the output from tasks ii, ii, and iv
Expert Answer
Answer to Design a restaurant class to help manage multiple restaurants and their menus equiremen The class contains: 1) A static … . . .
OR

