コード例 #1
0
ファイル: BITBanking.cs プロジェクト: Bgood92/bank-of-bit
 /// <summary>
 /// Sets the next account number to the next incremented value
 /// </summary>
 public void SetNextAccountNumber()
 {
     this.AccountNumber = (long)StoredProcedures.NextNumber("NextChequingAccounts");
 }
コード例 #2
0
ファイル: BITBanking.cs プロジェクト: Bgood92/bank-of-bit
 /// <summary>
 /// Sets the next transaction number to the next incremented value
 /// </summary>
 public void SetNextTransactionNumber()
 {
     TransactionNumber = StoredProcedures.NextNumber("NextTransactionNumbers");
 }
コード例 #3
0
ファイル: BITBanking.cs プロジェクト: Bgood92/bank-of-bit
 /// <summary>
 /// Sets the next account number to the next incremented value
 /// </summary>
 public void SetNextAccountNumber()
 {
     this.AccountNumber = (long)StoredProcedures.NextNumber("NextMortgageAccounts");
 }
コード例 #4
0
ファイル: BITBanking.cs プロジェクト: Bgood92/bank-of-bit
 /// <summary>
 /// Sets the next account number to the next incremented value
 /// </summary>
 public void SetNextAccountNumber()
 {
     this.AccountNumber = (long)StoredProcedures.NextNumber("NextInvestmentAccounts");
 }
コード例 #5
0
 public void SetNextTransactionNumber()
 {
     //set the TransactionNumber property to the appropriate value returned from the NextKey static method
     TransactionNumber = (int)StoredProcedures.NextKey("NextTransactionNumbers");
 }
コード例 #6
0
ファイル: BITBanking.cs プロジェクト: Bgood92/bank-of-bit
 /// <summary>
 /// Sets the next client number in the clients table to the next incremented value
 /// </summary>
 public void SetNextClientNumber()
 {
     ClientNumber = StoredProcedures.NextNumber("NextClientNumbers");
 }
コード例 #7
0
 public override void SetNextAccountNumber()
 {
     //set the AccountNumber property to the appropriate value returned from the NextKey static method
     AccountNumber = (int)StoredProcedures.NextKey("NextChequingAccounts");
 }
コード例 #8
0
 /// <summary>
 /// Sets the next account number to the next available one in the database
 /// </summary>
 public override void SetNextAccountNumber()
 {
     AccountNumber = (long)StoredProcedures.NextNumber("NextChequingAccounts");
 }
コード例 #9
0
 /// <summary>
 /// Sets the account number to the next available one
 /// </summary>
 public override void SetNextAccountNumber()
 {
     AccountNumber = (long)StoredProcedures.NextNumber("NextMortgageAccounts");
 }
コード例 #10
0
 /// <summary>
 /// Sets the account number to the next available one
 /// </summary>
 public override void SetNextAccountNumber()
 {
     AccountNumber = (long)StoredProcedures.NextNumber("NextInvestmentAccounts");
 }
コード例 #11
0
 /// <summary>
 /// Sets the next savings account number to the next available number
 /// </summary>
 public override void SetNextAccountNumber()
 {
     //Extracting the next available number from the database using stored procedure
     AccountNumber = (long)StoredProcedures.NextNumber("NextSavingsAccounts");
 }