Exemplo n.º 1
0
 // constructors
 public SellingOrder(int orderNr, Visitor customer, Employee cashier, Dictionary <EventItem, int> orderLineItem, ServicePoint shop)
     : base(orderNr, customer, cashier, orderLineItem, shop)
 {
 }
Exemplo n.º 2
0
 public SellingOrder(int orderNr, Visitor customer, ServicePoint shop) : base(orderNr, customer, shop)
 {
 }