public int DeleteDCAccount(DCAccount theDCAccount) { return(DCAccountIntegration.DeleteDcAccount(theDCAccount)); }
public int UpdateDCAccount(DCAccount theDCAccount) { return(DCAccountIntegration.UpdateDcAccount(theDCAccount)); }
public DCAccount GetDCAccountById(int DCAccountID) { return(DCAccountIntegration.GetDCAccountById(DCAccountID)); }
public int InsertDCAccount(DCAccount theDCAccount) { return(DCAccountIntegration.InsertDcAccount(theDCAccount)); }
public List <DCAccount> GetUnallotedDCAccounts(bool allOffices = false, bool showDeleted = false) { return(DCAccountIntegration.GetUnallotedDCAccounts(allOffices, showDeleted)); }