public MappingParameterEditorPresenter(
     IMappingParameterEditorView view,
     IUnitsEditorPresenter unitsEditorPresenter,
     ILloqEditorPresenter lloqEditorPresenter,
     IOptionsEditorPresenter errorEditorPresenter
     ) : base(view)
 {
     _unitsEditorPresenter = unitsEditorPresenter;
     _lloqEditorPresenter  = lloqEditorPresenter;
     _errorEditorPresenter = errorEditorPresenter;
     View.FillUnitsView(_unitsEditorPresenter.BaseView);
     View.FillLloqView(_lloqEditorPresenter.BaseView);
     View.FillErrorView(_errorEditorPresenter.BaseView);
     errorEditorPresenter.OnOptionSelectionChanged += errorSelectionChanged;
 }
Пример #2
0
 public void AttachPresenter(IOptionsEditorPresenter presenter)
 {
 }
Пример #3
0
 public LloqEditorPresenter(ILloqEditorView view, IOptionsEditorPresenter optionsEditorPresenter) : base(view)
 {
     _optionsEditorPresenter = optionsEditorPresenter;
     View.FillLloqSelector(_optionsEditorPresenter.BaseView);
 }