コード例 #1
0
 public int DeleteAccountLedger(AccountLedger theAccountLedger)
 {
     return(AccountLedgerIntegration.DeleteAccountLedger(theAccountLedger));
 }
コード例 #2
0
 public int UpdateAccountLedger(AccountLedger theAccountLedger)
 {
     return(AccountLedgerIntegration.UpdateAccountLedger(theAccountLedger));
 }
コード例 #3
0
 public int InsertAccountLedger(AccountLedger theAccountLedger)
 {
     return(AccountLedgerIntegration.InsertAccountLedger(theAccountLedger));
 }
コード例 #4
0
 public AccountLedger GetAccountLedgerByID(int accountLedgerID)
 {
     return(AccountLedgerIntegration.GetAccountLedgerByID(accountLedgerID));
 }
コード例 #5
0
 public List <AccountLedger> GetBankLedgerList(bool allOffices = false, bool showDeleted = false)
 {
     return(AccountLedgerIntegration.GetBankLedgerList(allOffices, showDeleted));
 }
コード例 #6
0
 public List <AccountLedger> GetAccountLedgerList(string searchText)
 {
     return(AccountLedgerIntegration.GetAccountLedgerList(searchText));
 }