public IntestinalPermeabilityWithCalculationMethodPresenter( IMultiplePanelView view, IIntestinalPermeabilityGroupPresenter intestinalPermeabilityGroupPresenter, ICalculationMethodSelectionPresenterForCompound calculationMethodSelectionPresenter) : base(view, calculationMethodSelectionPresenter, intestinalPermeabilityGroupPresenter) { _view.AddEmptyPlaceHolder(); }
protected override void Context() { _calculationMethodSelectionPresenter = A.Fake <ICalculationMethodSelectionPresenterForCompound>(); _organPermeabilityGroupPresenter = A.Fake <IOrganPermeabilityGroupPresenter>(); _multiplePanelView = A.Fake <IMultiplePanelView>(); sut = new DistributionWithCalculationMethodGroupPresenter(_multiplePanelView, _organPermeabilityGroupPresenter, _calculationMethodSelectionPresenter); }
protected override void Context() { _intestinalPermeabilityPresenter = A.Fake <IIntestinalPermeabilityGroupPresenter>(); _calculationMethodSelectionPresenter = A.Fake <ICalculationMethodSelectionPresenterForCompound>(); _view = A.Fake <IMultiplePanelView>(); sut = new IntestinalPermeabilityWithCalculationMethodPresenter(_view, _intestinalPermeabilityPresenter, _calculationMethodSelectionPresenter); }
// private readonly ICompoundVSSPresenter _compoundVSSPresenter; public DistributionWithCalculationMethodGroupPresenter(IMultiplePanelView view, IOrganPermeabilityGroupPresenter organPermeabilityGroupPresenter, ICalculationMethodSelectionPresenterForCompound calculationMethodSelectionPresenter, ICompoundVSSPresenter compoundVSSPresenter) : base(view, calculationMethodSelectionPresenter, organPermeabilityGroupPresenter) { // _compoundVSSPresenter = compoundVSSPresenter; // AddSubPresenters(_compoundVSSPresenter); // _view.ActivateView(_compoundVSSPresenter.BaseView); _view.AddEmptyPlaceHolder(); }
protected PermeabilityWithCalculationMethodsGroupPresenter(IMultiplePanelView view, ICalculationMethodSelectionPresenterForCompound calculationMethodSelectionPresenter, TPermeabilityPresenter permeabilityGroupPresenter) : base(view, calculationMethodSelectionPresenter, permeabilityGroupPresenter) { _permeabilityGroupPresenter = permeabilityGroupPresenter; _calculationMethodSelectionPresenter = calculationMethodSelectionPresenter; }
public DistributionWithCalculationMethodGroupPresenter(IMultiplePanelView view, IOrganPermeabilityGroupPresenter organPermeabilityGroupPresenter, ICalculationMethodSelectionPresenterForCompound calculationMethodSelectionPresenter) : base(view, calculationMethodSelectionPresenter, organPermeabilityGroupPresenter) { _view.AddEmptyPlaceHolder(); }