Exemplo n.º 1
0
 /// <summary>
 /// Creates a new taxon relation tree edge.
 /// </summary>
 /// <param name="parent">The parent node.</param>
 /// <param name="child">The child node.</param>
 /// <param name="taxonRelation">The taxon relation.</param>
 public TaxonRelationsTreeEdge(ITaxonRelationsTreeNode parent, ITaxonRelationsTreeNode child, ITaxonRelation taxonRelation)
 {
     Parent        = parent;
     Child         = child;
     TaxonRelation = taxonRelation;
 }
Exemplo n.º 2
0
 public void UpdateTaxonRelation(IUserContext userContext, ITaxonRelation taxonRelation)
 {
     throw new NotImplementedException();
 }