This commit is contained in:
2013-06-17 13:52:24 +00:00
parent 8a14d2a043
commit 91c7da8300
6 changed files with 39 additions and 18 deletions

View File

@@ -1311,6 +1311,14 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _Macro, "@Macro");
}
}
private LazyLoad<bool> _NotOnEmpty;
public bool NotOnEmpty
{
get
{
return LazyLoad(ref _NotOnEmpty, "@NotOnEmpty");
}
}
public override string GetPDDisplayName()
{ return string.Format("[{0}]",Index); }
public override string GetPDDescription()
@@ -4704,6 +4712,7 @@ namespace VEPROMS.CSLA.Library
return LazyLoad(ref _NotInRNO, "@NotInRNO");
}
}
private bool? _Inherited;
public bool Inherited
{