Beispiel #1
0
 public CashierLogic(OrderLogic orderLo, BillLogic billLo)
 {
     this.orderLo = orderLo;
     this.billLo  = billLo;
 }
Beispiel #2
0
 public ClientLogic(OrderLogic orderLo, ProductLogic productLo)
 {
     this.orderLo   = orderLo;
     this.productLo = productLo;
 }
Beispiel #3
0
 public WaiterLogic(TableLogic tableLo, OrderLogic orderLo)
 {
     this.orderLo = orderLo;
     this.tableLo = tableLo;
 }