public OrderConfirmed(OrderId orderId)
 {
     this.OrderId = orderId;
 }
 public OrderPlaced(OrderId orderId, IEnumerable <ItemId> items)
 {
     this.OrderId = orderId;
     this.Items   = items;
 }