コード例 #1
0
 public CoffeeMachine(Bank b, Cooker c, int g)
 {
     this.bank    = b;
     this.cooker  = c;
     this.Glasses = g;
 }
コード例 #2
0
 public FoodMachine(Bank b, Cooker c)
 {
     this.bank   = b;
     this.cooker = c;
 }