/// <summary> /// Returns the code/label pair for the provided enumeration code /// </summary> public static KeyValuePair <string, string> Decode(C80ClassCode code) { return(CodeDictionary[code]); }
/// <summary> /// Returns the code/label pair for the provided enumeration code /// </summary> public static KeyValuePair<string, string> Decode(C80ClassCode code) { return CodeDictionary[code]; }
/// <summary> /// Returns a <see cref="CodedValue"/> for the code /// </summary> public static CodedValue ToCodedValue(this C80ClassCode code) { KeyValuePair <string, string> pair = Decode(code); return(new CodedValue(pair.Key, pair.Value, "2.16.840.1.113883.3.88.12.80.46")); }