public OrderDecorator(OrderBase order)
 {
     this.order = order;
 }
Example #2
0
 public PremiumOrder(OrderBase order) : base(order)
 {
 }