Exemplo n.º 1
0
 /*
  * Method which sets the ATM to the PIN number entry screen
  */
 private void pinScreen(string screenText)
 {
     st             = Stage.PIN;
     input          = "";
     lblScreen.Text = screenText;
 }
Exemplo n.º 2
0
 /*
  * Method which sets the ATM to withdraw cash screen
  */
 private void withdrawScreen(string screenText)
 {
     st             = Stage.WITHDRAW;
     input          = "";
     lblScreen.Text = screenText;
 }
Exemplo n.º 3
0
 /*
  * Method which sets the ATM to the account number entry screen
  */
 private void accountScreen(string screenText)
 {
     st             = Stage.ACCOUNT;
     input          = "";
     lblScreen.Text = screenText;
 }
Exemplo n.º 4
0
 /*
  * Method which sets the ATM to account menu screen
  */
 private void menuScreen()
 {
     st             = Stage.MENU;
     lblScreen.Text = "1. Withdraw \n 2. Check Balance \n 3. Exit \n";;
 }