BudgetAnalyser.Engine.Services.TransactionRuleService.Close C# (CSharp) Method

Close() public method

public Close ( ) : void
return void
        public void Close()
        {
            this.rulesStorageKey = null;
            this.matchingRulesGroupedByBucket.Clear();
            this.matchingRules.Clear();
            var handler = Closed;
            handler?.Invoke(this, EventArgs.Empty);
        }