Beispiel #1
0
        private static void RecalculateParentAccountWithPreserving(int AccountId)
        {
            int ParentId = DBFinance.GetParentAccountId(AccountId);

            if (ParentId > 0)
            {
                DBFinance.RecalculateParentAccountWithPreserving(ParentId, Security.CurrentUser.UserID);
            }
        }