示例#1
0
 public PartyPropertyValueContainer(Party party, PropertyTemplateBase propertyTemplate,
                                    PropertyValueContainerBase propertyValueContainer,
                                    String description, String reference, String remark,
                                    TimeInterval effectivePeriod, User user)
     : base(party, propertyTemplate, description, reference, remark, effectivePeriod, user)
 {
     this.propertyValueContainer = propertyValueContainer;
 }
示例#2
0
 public virtual void RemoveChild(PropertyValueContainerBase child)
 {
     this.Children.Remove(child);
 }
示例#3
0
 public virtual bool AddChild(PropertyValueContainerBase child)
 {
     this.Children.Add(child);
     return(true);
 }