Added config support for AnnotationType
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user