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

@@ -453,7 +453,43 @@ namespace VEPROMS.CSLA.Library
}
return null;
}
public bool IsFolder
{
get
{
return false;
}
}
public bool IsDocVersion
{
get
{
return true;
}
}
public bool IsProcedure
{
get
{
return false;
}
}
public bool IsSection
{
get
{
return false;
}
}
public bool IsStep
{
get
{
return false;
}
}
}
public enum VersionTypeEnum : int
{
WorkingDraft = 0, Temporary = 1, Revision = 128, Approved = 129