BudgetAnalyser.Engine.Services.TransactionManagerService.ValidateModel C# (CSharp) Method

ValidateModel() public method

Validates the model owned by the service.
public ValidateModel ( StringBuilder messages ) : bool
messages StringBuilder
return bool
        public bool ValidateModel(StringBuilder messages)
        {
            Validating?.Invoke(this, new ValidatingEventArgs());

            // In the case of the StatementModel all edits are validated and resolved during data edits. No need for an overall consistency check.
            return true;
        }