Search for question
Question

The subject of this application will be: restaurant (ANY RESTAURANT) management. database needs to be created and contain at least 3 tables. a form design needs to be made using windows forms application c#. form design is expected to be user-friendly and simplistic. the following operations must be running smoothly in the form: - Adding new data to the table - Querying data from table - Listing the data in the table - Update a selected data - Deleting data from table (.sln should be found), and the database backup will be uploaded as a backup (.bak should be found). i also expect explaining comment lines. please don't use too many elements, keep the design and logic at minimum. screenshots are NOT needed at all. Only need the c# project files and comments for c# codes. sql will be microsoft sql. Database Design: We will use the following three tables in the database: Customers: stores customer information (CustomerID, Name, Surname, Phone, Email). Meals: stores the information of the meals in the restaurant (FoodID, Meal Name, Price, Category). Orders: stores order information (OrderID, CustomerID, MealID, Quantity, Date). Windows Forms Application: "Customers" form for adding, updating and deleting customers. "Meals" form for adding, updating and deleting meals. "Orders" form for adding, updating and deleting orders. A "Reports" form that lists and queries customer and food information.