コード例 #1
0
ファイル: TaxaUnitType.cs プロジェクト: OSRS/Oncor_OsrsLegacy
 public bool Equals(TaxaUnitType other)
 {
     if (other != null)
     {
         return(this.Identity.Equals(other.Identity));
     }
     return(false);
 }
コード例 #2
0
 public bool Delete(TaxaUnitType unitType)
 {
     if (unitType != null)
     {
         return(this.Delete(unitType.Identity));
     }
     return(false);
 }
コード例 #3
0
 public abstract bool CanUpdate(TaxaUnitType unitType);
コード例 #4
0
 public abstract bool CanDelete(TaxaUnitType unitType);
コード例 #5
0
 public abstract TaxaUnitType GetParent(TaxaDomain domain, TaxaUnitType child);
コード例 #6
0
 public abstract IEnumerable <TaxaUnitType> GetDescendants(TaxaDomain domain, TaxaUnitType taxaUnitType);
コード例 #7
0
 public abstract IEnumerable <TaxaUnitType> GetChildren(TaxaDomain domain, TaxaUnitType parent);
コード例 #8
0
 public abstract bool IsParentOf(TaxaDomain domain, TaxaUnitType parent, TaxaUnitType child);
コード例 #9
0
 public abstract bool IsAncestorOf(TaxaDomain domain, TaxaUnitType parent, TaxaUnitType child);