예제 #1
0
 public IntestinalPermeabilityWithCalculationMethodPresenter(
     IMultiplePanelView view,
     IIntestinalPermeabilityGroupPresenter intestinalPermeabilityGroupPresenter,
     ICalculationMethodSelectionPresenterForCompound calculationMethodSelectionPresenter) : base(view, calculationMethodSelectionPresenter, intestinalPermeabilityGroupPresenter)
 {
     _view.AddEmptyPlaceHolder();
 }
예제 #2
0
 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);
 }
예제 #4
0
 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();
 }
예제 #6
0
//      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();
        }