Beispiel #1
0
 public int DeleteAccount(AccountName theAccount)
 {
     return(AccountNameIntegration.DeleteAccount(theAccount));
 }
Beispiel #2
0
 public int UpdateDisplayOrder(List <AccountName> accountList)
 {
     return(AccountNameIntegration.UpdateDisplayOrder(accountList));
 }
Beispiel #3
0
 public int InsertAccount(AccountName theAccount)
 {
     return(AccountNameIntegration.InsertAccount(theAccount));
 }
Beispiel #4
0
 public int UpdateAccount(AccountName theAccount)
 {
     return(AccountNameIntegration.UpdateAccount(theAccount));
 }
Beispiel #5
0
 public AccountName GetAccountByID(int accountID)
 {
     return(AccountNameIntegration.GetAccountByID(accountID));
 }
Beispiel #6
0
 public List <AccountName> GetAccountListByAnalysisFlag(List <AccountName> accountNameList, string analysisFlag)
 {
     return(AccountNameIntegration.GetAccountListByAnalysisFlag(accountNameList, analysisFlag));
 }
Beispiel #7
0
 public List <AccountName> GetAccountListByAnalysisFlag(string analysisFlag, bool showPrimary = true, bool showDeleted = false)
 {
     return(AccountNameIntegration.GetAccountListByAnalysisFlag(analysisFlag, showPrimary, showDeleted));
 }
Beispiel #8
0
 public List <AccountName> GetAccountListByAccessType(string accessType)
 {
     return(AccountNameIntegration.GetAccountListByAccessType(accessType));
 }
Beispiel #9
0
 public List <AccountName> GetAccountList(bool showPrimary = true, bool showDeleted = false)
 {
     return(AccountNameIntegration.GetAccountList(showPrimary, showDeleted));
 }