Esempio n. 1
0
 public void PKObp_Credit(string receiverAccountNo, int amount)
 {
     UserAccount UserAccount2 = new UserAccount();
   
     UserAccount2.IncreaseBalance(amount);
 }
Esempio n. 2
0
 public void PKObp_Debit(string senderAccountNo, int amount)
 {
     UserAccount UserAccount1 = new UserAccount();
     UserAccount1.DecreaseBalance(amount);
 }