예제 #1
0
        /// <summary>
        /// Determine equality of
        /// </summary>
        public override bool SemanticEquals(object obj)
        {
            CodeSystem other = obj as CodeSystem;

            if (other == null)
            {
                return(false);
            }
            return(base.SemanticEquals(obj) && this.Name == other.Name &&
                   this.Oid == other.Oid &&
                   this.Authority == other.Authority &&
                   this.VersionText == other.VersionText);
        }
예제 #2
0
 /// <summary>
 /// Force reloading of delay load properties
 /// </summary>
 public override void Refresh()
 {
     this.m_codeSystem   = null;
     this.m_displayNames = null;
 }