示例#1
0
 public void updateAccountBalance(int accountID, decimal total)
 {
    //See note above: want to use existing connection
    Customer customerDal = new Customer(_internalConnection, _internalADOTransaction);
    customerDal.updateAccountBalance(accountID, total);
    return;
 }