コード例 #1
0
        /// <summary>
        /// Get RESULTSCOPIESTO Records from ORO
        /// </summary>
        public static IEnumerable GetRESULTSCOPIESTORecords(this ORO message)
        {
            object[] result = message.GetRecords("RESULTSCOPIESTORepetitionsUsed", "GetRESULTSCOPIESTO");

            if ((result != null) && (result.Count() > 0))
            {
                for (int i = 0; i < result.Count(); i++)
                {
                    yield return(result[i]);
                }
            }
        }
コード例 #2
0
 /// <summary>
 /// Add a new RESULTSCOPIESTO to ORO
 /// </summary>
 public static CN AddRESULTSCOPIESTO(this ORO message)
 {
     return(message.GetRESULTSCOPIESTO(message.RESULTSCOPIESTORepetitionsUsed));
 }
コード例 #3
0
 /// <summary>
 /// Get all RESULTSCOPIESTO Records from ORO
 /// </summary>
 public static List <CN> GetAllRESULTSCOPIESTORecords(this ORO message)
 {
     return(message.GetAllRecords <CN>("RESULTSCOPIESTORepetitionsUsed", "GetRESULTSCOPIESTO"));
 }