Example #1
0
 public EntityTypeElement(string fullName)
     : base(fullName)
 {
     _properties = new NotifyChangedCollection <PropertyElement>();
     AddChildren(_properties);
 }
Example #2
0
 public EnumElement(string fullName)
     : base(fullName)
 {
     _items = new NotifyChangedCollection <EnumItemElement>();
     AddChildren(_items);
 }
Example #3
0
 public EntityTypeElement(string fullName)
     : base(fullName)
 {
     _properties = new NotifyChangedCollection<PropertyElement>();
     AddChildren(_properties);
 }
Example #4
0
 public EnumElement(string fullName)
     : base(fullName)
 {
     _items = new NotifyChangedCollection<EnumItemElement>();
     AddChildren(_items);
 }