BudgetAnalyser.Engine.Services.ReconciliationService.BeforeReconciliationValidation C# (CSharp) Méthode

BeforeReconciliationValidation() public méthode

An optional validation method the UI can call before invoking MonthEndReconciliation to test for validation warnings. If validation fails a new ValidationWarningException is thrown; otherwise the method returns.
public BeforeReconciliationValidation ( LedgerBook book, StatementModel model ) : void
book BudgetAnalyser.Engine.Ledger.LedgerBook
model BudgetAnalyser.Engine.Statement.StatementModel
Résultat void
        public void BeforeReconciliationValidation(LedgerBook book, StatementModel model)
        {
            this.reconciliationManager.ValidateAgainstOrphanedAutoMatchingTransactions(book, model);
        }