This commit is contained in:
2012-09-27 11:09:51 +00:00
parent bb27c20810
commit c0ae487ce1
3 changed files with 87 additions and 2 deletions

View File

@@ -364,6 +364,41 @@ namespace VEPROMS.CSLA.Library
{
public TopCriteria() { ;}
}
public bool IsFolder
{
get
{
return true;
}
}
public bool IsDocVersion
{
get
{
return false;
}
}
public bool IsProcedure
{
get
{
return false;
}
}
public bool IsSection
{
get
{
return false;
}
}
public bool IsStep
{
get
{
return false;
}
}
}
}