BudgetAnalyser.ReportsCatalog.ReportsCatalogController.OnSpendingTrendCommandExecute C# (CSharp) Method

OnSpendingTrendCommandExecute() private method

private OnSpendingTrendCommandExecute ( ) : void
return void
        private void OnSpendingTrendCommandExecute()
        {
            CurrentMonthBurnDownGraphsController.Load(this.currentStatementModel, this.budgets.CurrentActiveBudget, RequestCurrentFilter(), this.currentLedgerBook);

            this.newWindowViewLoader.MinHeight = this.newWindowViewLoader.Height = 600;
            this.newWindowViewLoader.MinWidth = this.newWindowViewLoader.Width = 600;
            this.newWindowViewLoader.Show(CurrentMonthBurnDownGraphsController);
        }