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