예제 #1
0
 public Topping(AbstractCoffee c) : base(c)
 {
 }
예제 #2
0
 public Sugar(AbstractCoffee c) : base(c)
 {
 }
예제 #3
0
파일: Milk.cs 프로젝트: mtachot/Playground
 public Milk(AbstractCoffee c) : base(c)
 {
 }
예제 #4
0
 public AbstractCoffee(AbstractCoffee k)
 {
     this.k = k;
 }