Exemplo n.º 1
0
 public void InsertQuarter()
 {
     Console.WriteLine("你投入了钱");
     _candyMachine.SetCurrentState(new HasQuarterState(_candyMachine));
 }
Exemplo n.º 2
0
 public void EjectQuarter()
 {
     Console.WriteLine("马上退款");
     _candyMachine.SetCurrentState(new NoQuarterState(_candyMachine));
 }