public Canela(Bebida bebida) : base(bebida)
 {
     this.drink = bebida;
 }
 public Ingredientes(Bebida drink)
 {
     this.bebida = drink;
 }
 public Crema(Bebida bebida) : base(bebida)
 {
     this.drink = bebida;
 }
예제 #4
0
 public Azucar(Bebida bebida) : base(bebida)
 {
     this.drink = bebida;
 }