public OrderProduct(StroopwafelType type)
 {
     this.Type  = type;
     this.Brand = Brand.Stroopie;
 }
 public Stroopwafel(StroopwafelType type)
 {
     this.Type = type;
 }
 public OrderRow(int amount, StroopwafelType type)
 {
     Amount = amount;
     Type   = type;
 }
 public Stroopwafel(StroopwafelType type, Brand brand, decimal price)
 {
     this.Type  = type;
     this.Brand = brand;
     this.Price = price;
 }