This commit is contained in:
Kathy Ruffing 2010-06-08 11:53:56 +00:00
parent 9dc7aaa9c5
commit 11f2d476b1

View File

@ -1440,6 +1440,23 @@ namespace VEPROMS.CSLA.Library
return ProcedureInfo.Get(tmp.ItemID);
}
}
private ItemInfo _MyHLS = null;
public ItemInfo MyHLS
{
get
{
if (_MyHLS == null)
{
if (IsHigh) _MyHLS = this;
else
{
_MyHLS = ((ItemInfo)MyActiveParent).MyHLS;
}
}
return _MyHLS;
}
}
private IVEDrillDownReadOnly _ActiveParent = null;
public IVEDrillDownReadOnly MyActiveParent { get { return _ActiveParent; } }
public IVEDrillDownReadOnly ActiveParent