Sunday, December 6, 2015

Restaurent design another round.

There is an earlier post related to Restaurant here. I wanted to attempt this design challenge again now with some more complexity.

I will describe the challenge here first followed by the assumptions.




We are going to discuss about a restaurant with
  1. some limited(m>0) tables
  2. one chef
  3. one waiter
  4. one cashier
  5. some chairs for customers to wait when the tables are busy.

Assumptions being made are all payments are made electronically.
  1. The restaurant does not allow table reservation policy. You come and if there is a table sit and dine else wait for a table to free. 
  2. All orders are going to be accepted i.e. there is no way the chef would say ingredients for menu item 29 are over and hence cant accept the order for that item. Poor chef :( 
  3. Any new items ordered by the customer are treated as a different coming from same customer.
  4. The waiter gets the name of the customer as part of welcoming him and will use it along with table number to identify the customer

Let us try to model this restaurant using Object oriented techniques

The different players are
  • Customer
  • Waiter
  • Chef
  • Cashier
Below use case diagram depicts the typical interactions in the restaurant model. I developed the below use case diagram using an open source uml tool called ArgoUML. You can also try this tool. It is a good one.

http://thought-works.blogspot.in
























Our next milestone is to design classes to support the above use cases. Without much difficulty we can arrive the need for classes Customer, Cashier, Chef and Waiter and their operations(Actors in the use cases have their classes).

In the use case model we are talking about adding order to queue, adding cheque request to queue. These queue classes are also part of the class diagram accordingly. I did not mention the operations and attributes of *Queue classes as they are obvious.

Restaurant's operations typically are table centric(what i mean is they typically talk in terms like a  barbecued chicken for table no 1, prepare the cheque for table no 5 etc). In this system we just need to store the details like customer name (this also is not mandatory at least would be helpful to address him in the bill/custom feedback form).

But any point of time we should have information of what orders are coming from which table, which customer is seated at which table. (Putting the table id into the customer object is not the right thing to track the customer table association as table id does not naturally look to be an attribute of a customer object).

Similarly we need to know which orders are coming from which table( it is actually customers seated at that table). Here also storing table id in order to track the association does not seem correct.

We use two maps to track the association between customers and tables, tables and orders.


Below is how the class diagram looks for the Restaurant system now





Cartoon courtesy: here

2 comments:

  1. While doing oops design, should't we think who is going to call a Method of a Class for example, I am unable to think which class or UI even will call askMenu method of Customer class

    ReplyDelete