BudgetAnalyser.ReportsCatalog.BurnDownGraphs.AddUserDefinedBurnDownController.AddChart C# (CSharp) Метод

AddChart() публичный Метод

public AddChart ( ) : bool
Результат bool
        public bool AddChart()
        {
            SelectedBuckets = new BindingList<BudgetBucket>();
            UnselectedBuckets = new BindingList<BudgetBucket>(this.chartsService.AvailableBucketsForBurnDownCharts().ToList());
            ChartTitle = string.Empty;

            bool? result = this.viewLoader.ShowDialog(this);
            if (result != null && result.Value)
            {
                return true;
            }

            return false;
        }