Ejemplo n.º 1
0
 public void enterPincode(int pin)
 {
     if (pin == 1234)
     {
         Console.WriteLine("Entered valid pin");
         machine.setState(machine.getCorrectPinState());
     }
     else
     {
         Console.WriteLine("Invalid pin. Rejecting card...");
         machine.setState(machine.getNoCardState());
     }
 }
Ejemplo n.º 2
0
 public void rejectCard()
 {
     Console.WriteLine("Your card got rejected");
     machine.setState(machine.getNoCardState());
 }