Exemple #1
0
Fichier : ATM.cs Projet : q2git/VS
 private void changePsw()
 {
     try
     {
         currentAccount.ChangePwd(GetInput("pwd"));
         bank.UpdateAccount(currentAccount);
     }
     catch (AccountException e)
     {
         Show("Error: " + e.Message);
     }
 }