Ejemplo n.º 1
0
 public Mayonnaise(BurgersComponent burger)
     : base(burger)
 {
     this.name  = "Mayonnaise";
     this.price = 1.0;
     this.types = Types.Normal;
 }
Ejemplo n.º 2
0
 public JalapenosGrilles(BurgersComponent burger) : base(burger)
 {
     this.name  = "Jalapenos Grillés";
     this.price = 1.0;
     this.types = Types.Normal;
 }
Ejemplo n.º 3
0
 public SauceSteak(BurgersComponent burger) : base(burger)
 {
     this.name  = "Sauce Steak";
     this.price = 1.0;
     this.types = Types.Normal;
 }
Ejemplo n.º 4
0
 public Salade(BurgersComponent burger) : base(burger)
 {
     this.name  = "Salade";
     this.price = 1.0;
     this.types = Types.Normal;
 }
Ejemplo n.º 5
0
 public ChampignonsGrilles(BurgersComponent burger) : base(burger)
 {
     this.name  = "Champignons Grillés";
     this.price = 1.0;
     this.types = Types.Null;
 }
Ejemplo n.º 6
0
 public PoivronVert(BurgersComponent burger) : base(burger)
 {
     this.name  = "Poivron Vert";
     this.price = 1.0;
     this.types = Types.Normal;
 }
Ejemplo n.º 7
0
 protected Decorator(BurgersComponent burger)
 {
     BaseComponent = burger;
 }
Ejemplo n.º 8
0
 public Cornichons(BurgersComponent burger) : base(burger)
 {
     this.name  = "Cornichons";
     this.price = 1.0;
     this.types = Types.Normal;
 }
Ejemplo n.º 9
0
 public OignonsGrilles(BurgersComponent burger) : base(burger)
 {
     this.name  = "Oignons Grillés";
     this.price = 1.0;
     this.types = Types.Normal;
 }
Ejemplo n.º 10
0
 public Ketchup(BurgersComponent burger) : base(burger)
 {
     this.name  = "Ketchup";
     this.price = 1.0;
     this.types = Types.Normal;
 }
Ejemplo n.º 11
0
 public Tomate(BurgersComponent burger) : base(burger)
 {
     this.name  = "Tomate";
     this.price = 1.0;
     this.types = Types.Normal;
 }