/// <summary> /// Get ORDERCALLBACKPHONENUM Records from OBR /// </summary> public static IEnumerable GetORDERCALLBACKPHONENUMRecords(this OBR message) { object[] result = message.GetRecords("ORDERCALLBACKPHONENUMRepetitionsUsed", "GetORDERCALLBACKPHONENUM"); if ((result != null) && (result.Count() > 0)) { for (int i = 0; i < result.Count(); i++) { yield return(result[i]); } } }
/// <summary> /// Get REASONFORSTUDY Records from OBR /// </summary> public static IEnumerable GetREASONFORSTUDYRecords(this OBR message) { object[] result = message.GetRecords("REASONFORSTUDYRepetitionsUsed", "GetREASONFORSTUDY"); if ((result != null) && (result.Count() > 0)) { for (int i = 0; i < result.Count(); i++) { yield return(result[i]); } } }
/// <summary> /// Get COLLECTORIDENTIFIER Records from OBR /// </summary> public static IEnumerable GetCOLLECTORIDENTIFIERRecords(this OBR message) { object[] result = message.GetRecords("COLLECTORIDENTIFIERRepetitionsUsed", "GetCOLLECTORIDENTIFIER"); if ((result != null) && (result.Count() > 0)) { for (int i = 0; i < result.Count(); i++) { yield return(result[i]); } } }