Ejemplo n.º 1
0
        /// <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]);
                }
            }
        }
Ejemplo n.º 2
0
        /// <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]);
                }
            }
        }
Ejemplo n.º 3
0
        /// <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]);
                }
            }
        }