/// <summary> /// Initializes a new instance of the <see cref="SubtermCollection"/> class. /// </summary> /// <param name="owner">The owner of this collection.</param> public SubtermCollection(EntityATerm owner) { #region Contract Debug.Assert(owner != null); #endregion this.owner = owner; }
/// <inheritdoc /> public bool Equals(EntityATerm other) { if (Object.ReferenceEquals(this, other)) { return(true); } return(base.Equals(other) && this.Name.Equals(other.Name) && this.Properties.Equals(other.Properties)); }