Exemplo n.º 1
0
 public override bool IsChildOf(TermNode AnotherTermNode)
 {
     if (!(AnotherTermNode is TermNodeWithGuid))
     {
         return(GetSubject().IsSubsetOf(AnotherTermNode.GetSubject()));
     }
     else
     {
         return(this.Parents.Contains(((TermNodeWithGuid)AnotherTermNode).GUID));
     }
 }
Exemplo n.º 2
0
 public virtual bool Overlaps(TermNode AnotherTermNode)
 {
     return(GetSubject().Overlaps(AnotherTermNode.GetSubject()));
 }
Exemplo n.º 3
0
 public virtual bool OverlapsWithoutInclusion(TermNode AnotherTermNode)
 {
     return(GetSubject().OverlapsWithoutInclusion(AnotherTermNode.GetSubject()));
 }
Exemplo n.º 4
0
 public virtual bool IsChildOf(TermNode AnotherTermNode)
 {
     return(GetSubject().IsSubsetOf(AnotherTermNode.GetSubject()));
 }