From 8ee42265ce8e24a9bc1eee0c977571b1caa246d5 Mon Sep 17 00:00:00 2001 From: Kathy Date: Fri, 3 Oct 2008 11:38:42 +0000 Subject: [PATCH] --- PROMS/Volian.Controls.Library/StepItem.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/PROMS/Volian.Controls.Library/StepItem.cs b/PROMS/Volian.Controls.Library/StepItem.cs index c63fe754..db33acd1 100644 --- a/PROMS/Volian.Controls.Library/StepItem.cs +++ b/PROMS/Volian.Controls.Library/StepItem.cs @@ -46,8 +46,28 @@ namespace Volian.Controls.Library private StepItem _MyNextStepItem = null; private bool _ChildrenLoaded = false; private List _MyBeforeStepItems; + + public List MyBeforeStepItems + { + get { return _MyBeforeStepItems; } + set { _MyBeforeStepItems = value; } + } private List _MyAfterStepItems; + + public List MyAfterStepItems + { + get { return _MyAfterStepItems; } + set { _MyAfterStepItems = value; } + } private List _MyRNOStepItems; + + public List MyRNOStepItems + { + get { return _MyRNOStepItems; } + set { _MyRNOStepItems = value; } + } + public Label MyLabel + { get { return lblTab; } } private StepSectionLayoutData _MyStepSectionLayoutData; private bool _Loading = true; private StepData _MyStepData;