Example #1
0
 public int DeleteDCAccount(DCAccount theDCAccount)
 {
     return(DCAccountIntegration.DeleteDcAccount(theDCAccount));
 }
Example #2
0
 public int UpdateDCAccount(DCAccount theDCAccount)
 {
     return(DCAccountIntegration.UpdateDcAccount(theDCAccount));
 }
Example #3
0
 public DCAccount GetDCAccountById(int DCAccountID)
 {
     return(DCAccountIntegration.GetDCAccountById(DCAccountID));
 }
Example #4
0
 public int InsertDCAccount(DCAccount theDCAccount)
 {
     return(DCAccountIntegration.InsertDcAccount(theDCAccount));
 }
Example #5
0
 public List <DCAccount> GetUnallotedDCAccounts(bool allOffices = false, bool showDeleted = false)
 {
     return(DCAccountIntegration.GetUnallotedDCAccounts(allOffices, showDeleted));
 }