xFunc.Presenters.GraphsPresenter.GraphsPresenter C# (CSharp) Méthode

GraphsPresenter() public méthode

public GraphsPresenter ( IGraphsView view, Processor processor ) : System
view IGraphsView
processor Processor
Résultat 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);
        }