BudgetAnalyser.LedgerBook.LedgerTransactionsController.SaveBalanceAdjustment C# (CSharp) Method

SaveBalanceAdjustment() private method

private SaveBalanceAdjustment ( ) : void
return void
        private void SaveBalanceAdjustment()
        {
            LedgerTransaction newTransaction = this.reconService.CreateBalanceAdjustment(this.entryLine, NewTransactionAmount, NewTransactionNarrative, NewTransactionAccount);
            ShownTransactions.Add(newTransaction);
            this.wasChanged = true;
            RaisePropertyChanged(() => TransactionsTotal);
        }