コード例 #1
0
 public bool Delete(InstrumentFamily org)
 {
     if (org != null)
     {
         return(this.Delete(org.Identity));
     }
     return(false);
 }
コード例 #2
0
 public bool Equals(InstrumentFamily other)
 {
     if (other != null)
     {
         return(this.Identity.Equals(other.Identity));
     }
     return(false);
 }
コード例 #3
0
 public abstract bool CanUpdate(InstrumentFamily org);
コード例 #4
0
 public abstract bool CanDelete(InstrumentFamily org);