public IntestinalPermeabilityGroupPresenter(IPermeabilityGroupView view, ICompoundAlternativeTask compoundAlternativeTask,
                                             IRepresentationInfoRepository representationRepo,
                                             IParameterGroupAlternativeToPermeabilityAlternativeDTOMapper permeabilityAlternativeDTOMapper,
                                             ICalculatedParameterValuePresenter calculatedParameterValuePresenter, IDialogCreator dialogCreator) :
     base(view, compoundAlternativeTask, representationRepo, permeabilityAlternativeDTOMapper, calculatedParameterValuePresenter, dialogCreator, CoreConstants.Groups.COMPOUND_INTESTINAL_PERMEABILITY)
 {
 }
 protected PermeabilityGroupPresenterBase(IPermeabilityGroupView view, ICompoundAlternativeTask compoundAlternativeTask,
                                          IRepresentationInfoRepository representationRepo,
                                          IParameterGroupAlternativeToPermeabilityAlternativeDTOMapper permeabilityAlternativeDTOMapper,
                                          ICalculatedParameterValuePresenter calculatedParameterValuePresenter, IDialogCreator dialogCreator, string groupName)
     : base(view, representationRepo, compoundAlternativeTask, dialogCreator, groupName)
 {
     _permeabilityAlternativeDTOMapper              = permeabilityAlternativeDTOMapper;
     _calculatedParameterValuePresenter             = calculatedParameterValuePresenter;
     _calculatedParameterValuePresenter.Description = PKSimConstants.UI.PermeabilityCalculatedFromLipoAndMolWeight;
     view.SetDynamicParameterView(_calculatedParameterValuePresenter.View);
     AddSubPresenters(_calculatedParameterValuePresenter);
 }