Ejemplo n.º 1
0
 public OrderProduct(StroopwafelType type)
 {
     this.Type  = type;
     this.Brand = Brand.Stroopie;
 }
Ejemplo n.º 2
0
 public Stroopwafel(StroopwafelType type)
 {
     this.Type = type;
 }
Ejemplo n.º 3
0
 public OrderRow(int amount, StroopwafelType type)
 {
     Amount = amount;
     Type   = type;
 }
Ejemplo n.º 4
0
 public Stroopwafel(StroopwafelType type, Brand brand, decimal price)
 {
     this.Type  = type;
     this.Brand = brand;
     this.Price = price;
 }