xFunc.Presenters.GraphsPresenter.GraphsPresenter C# (CSharp) Method

GraphsPresenter() public method

public GraphsPresenter ( IGraphsView view, Processor processor ) : System
view IGraphsView
processor Processor
return System
        public GraphsPresenter(IGraphsView view, Processor processor)
        {
            this.view = view;

            this.processor = processor;
            countOfGraphs = Settings.Default.MaxCountOfExpressions >= 20 ? 20 : Settings.Default.MaxCountOfExpressions;
            listOfGraphs = new List<GraphItemViewModel>(countOfGraphs);
        }