// constructors public SellingOrder(int orderNr, Visitor customer, Employee cashier, Dictionary <EventItem, int> orderLineItem, ServicePoint shop) : base(orderNr, customer, cashier, orderLineItem, shop) { }
public SellingOrder(int orderNr, Visitor customer, ServicePoint shop) : base(orderNr, customer, shop) { }