Beispiel #1
0
        public DiagnosisViewModel(IIcdEntity icd)
        {
            Contract.Requires(icd != null);
            _icd = icd;

            ChildrenChanged += (s, e) =>
            {
                IsNonCheckable = !IsTerminal;
            };
        }
Beispiel #2
0
 public virtual int CompareTo(IIcdEntity other)
 {
     return(new IcdEntityComparer().Compare(this, other));
 }
Beispiel #3
0
 int IComparable <IIcdEntity> .CompareTo(IIcdEntity other)
 {
     throw new NotImplementedException();
 }