This commit is contained in:
John Jenko 2010-09-16 18:41:21 +00:00
parent 7fb6638c2d
commit e24ab27c2b
2 changed files with 9 additions and 1 deletions

View File

@ -207,7 +207,7 @@ namespace VEPROMS.CSLA.Library
//}
public bool HasChildren
{
get { return _FolderDocVersionCount > 0 || _ChildFolderCount > 0; }
get { return FolderDocVersionCount > 0 || ChildFolderCount > 0; }
}
public IVEDrillDownReadOnly ActiveParent
{

View File

@ -287,6 +287,14 @@ namespace VEPROMS.CSLA.Library
#region ItemInfo
public partial class ItemInfo:IVEDrillDownReadOnly
{
public override bool Equals(object obj)
{
ItemInfo ii = obj as ItemInfo;
if (ii != null)
return ii.ItemID == ItemID;
return false;
}
public bool IsFirstSubStep
{
get