예제 #1
0
 public Canela(BebidaComponent bebida) : base(bebida)
 {
 }
예제 #2
0
 public AgregadoDecorator(BebidaComponent bebida)
 {
     _bebida = bebida;
 }
예제 #3
0
 public Crema(BebidaComponent bebida) : base(bebida)
 {
 }
예제 #4
0
 public Edulcorante(BebidaComponent bebida) : base(bebida)
 {
 }
예제 #5
0
파일: Azucar.cs 프로젝트: AndrewJTP/Labo-4
 public Azucar(BebidaComponent bebida) : base(bebida)
 {
 }