public bool Delete(InstrumentType org)
 {
     if (org != null)
     {
         return(this.Delete(org.Identity));
     }
     return(false);
 }
Esempio n. 2
0
 public bool Equals(InstrumentType other)
 {
     if (other != null)
     {
         return(this.Identity.Equals(other.Identity));
     }
     return(false);
 }
 public abstract bool CanUpdate(InstrumentType org);
 public abstract bool CanDelete(InstrumentType org);