コード例 #1
0
ファイル: Order.cs プロジェクト: vactorwu/catch23-project
 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;
 }
コード例 #2
0
ファイル: Order.cs プロジェクト: vactorwu/catch23-project
 public HoldingDataModel getHoldingForUpdate(int orderID)
 {
     //See note above: want to use existing connection
     Customer customerDal = new Customer(_internalConnection, _internalADOTransaction);
     return customerDal.getHoldingForUpdate(orderID);
 }