Added config support for AnnotationType

This commit is contained in:
Rich
2016-04-05 16:04:21 +00:00
parent d635be8452
commit 9931c454f3
2 changed files with 119 additions and 0 deletions

View File

@@ -53,9 +53,36 @@ namespace VEPROMS.CSLA.Library
{
return _Name;
}
[NonSerialized]
private AnnotationTypeConfig _AnnotationTypeConfig;
public AnnotationTypeConfig AnnotationTypeConfig
{
get
{
if (_AnnotationTypeConfig == null)
{
_AnnotationTypeConfig = new AnnotationTypeConfig(this);
}
return _AnnotationTypeConfig;
}
}
}
public partial class AnnotationTypeInfo
{
[NonSerialized]
private AnnotationTypeConfig _AnnotationTypeConfig;
public AnnotationTypeConfig AnnotationTypeConfig
{
get
{
if (_AnnotationTypeConfig == null)
{
_AnnotationTypeConfig = new AnnotationTypeConfig(this);
}
return _AnnotationTypeConfig;
}
}
public static List<AnnotationTypeInfo> AllList()
{
//return _AllList;