Example #1
0
 public void SetNextTransactionNumber()
 {
     //set the TransactionNumber property to the appropriate value returned from the NextKey static method
     TransactionNumber = (int)StoredProcedures.NextKey("NextTransactionNumbers");
 }
Example #2
0
 public override void SetNextAccountNumber()
 {
     //set the AccountNumber property to the appropriate value returned from the NextKey static method
     AccountNumber = (int)StoredProcedures.NextKey("NextChequingAccounts");
 }