Beispiel #1
0
 public Hawaiian(Pizza za)
 {
     this.za = za;
     this.za = new Ham(this.za);
     this.za = new Pineapple(this.za);
     this.za = new Cheese(this.za);
 }
Beispiel #2
0
 public Everything(Pizza za)
 {
     this.za = za;
     this.za = new Ham(this.za);
     this.za = new Sausage(this.za);
     this.za = new Pepperoni(this.za);
     this.za = new Bacon(this.za);
     this.za = new Pineapple(this.za);
     this.za = new Onions(this.za);
     this.za = new Peppers(this.za);
     this.za = new Mushrooms(this.za);
     this.za = new Cheese(this.za);
 }
Beispiel #3
0
 public Sausage(Pizza za)
 {
     this.za = za;
 }
Beispiel #4
0
 public Pineapple(Pizza za)
 {
     this.za = za;
 }
Beispiel #5
0
 public Peppers(Pizza za)
 {
     this.za = za;
 }
Beispiel #6
0
 public Pepperoni(Pizza za)
 {
     this.za = za;
 }
Beispiel #7
0
 public Onions(Pizza za)
 {
     this.za = za;
 }
Beispiel #8
0
 public Bacon(Pizza za)
 {
     this.za = za;
 }
Beispiel #9
0
 public Veggie(Pizza za)
 {
     this.za = za;
     this.za = new Onions(this.za);
     this.za = new Mushrooms(this.za);
     this.za = new Peppers(this.za);
     this.za = new Cheese(this.za);
 }
Beispiel #10
0
 public Salami(Pizza pizza) : base(pizza)
 {
     pizza_ = pizza;
 }
Beispiel #11
0
 public Tomatoes(Pizza pizza) : base(pizza)
 {
     pizza_ = pizza;
 }
Beispiel #12
0
 public Bacon(Pizza pizza) : base(pizza)
 {
     pizza_ = pizza;
 }
Beispiel #13
0
 public MeatLovers(Pizza za)
 {
     this.za = za;
     this.za = new Ham(this.za);
     this.za = new Sausage(this.za);
     this.za = new Pepperoni(this.za);
     this.za = new Bacon(this.za);
     this.za = new Cheese(this.za);
 }
Beispiel #14
0
 public Cheese(Pizza za)
 {
     this.za = za;
 }
Beispiel #15
0
 public Mushrooms(Pizza za)
 {
     this.za = za;
 }
Beispiel #16
0
 public Ham(Pizza za)
 {
     this.za = za;
 }
Beispiel #17
0
 public Supreme(Pizza za)
 {
     this.za = za;
     this.za = new Peppers(this.za);
     this.za = new Sausage(this.za);
     this.za = new Bacon(this.za);
     this.za = new Onions(this.za);
     this.za = new Mushrooms(this.za);
     this.za = new Cheese(this.za);
 }