示例#1
0
        /// <summary>
        /// Get NTE Records from NMD_N01_APP_STATS
        /// </summary>
        public static IEnumerable GetNTERecords(this NMD_N01_APP_STATS message)
        {
            object[] result = message.GetRecords("NTERepetitionsUsed", "GetNTE");

            if ((result != null) && (result.Count() > 0))
            {
                for (int i = 0; i < result.Count(); i++)
                {
                    yield return(result[i]);
                }
            }
        }