Exemplo n.º 1
0
 public OrderController(IFoodData food, IPersonData people, IDiningTableData table, IOrderData order)
 {
     _food   = food;
     _people = people;
     _table  = table;
     _order  = order;
 }
Exemplo n.º 2
0
 public RepositoryController(IOrderData order, IDiningTableData table, IPersonData people, IFoodData food)
 {
     _order  = order;
     _people = people;
     _food   = food;
     _table  = table;
 }
 public BillController(IOrderData order, IDiningTableData table, IPersonData people, IFoodData food, IBillData bill)
 {
     _order  = order;
     _table  = table;
     _people = people;
     _food   = food;
     _bill   = bill;
 }
Exemplo n.º 4
0
 public DiningTableController(IDiningTableData data)
 {
     _data = data;
 }