/// <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]); } } }
/// <summary> /// Add a new RESULTSCOPIESTO to ORO /// </summary> public static CN AddRESULTSCOPIESTO(this ORO message) { return(message.GetRESULTSCOPIESTO(message.RESULTSCOPIESTORepetitionsUsed)); }
/// <summary> /// Get all RESULTSCOPIESTO Records from ORO /// </summary> public static List <CN> GetAllRESULTSCOPIESTORecords(this ORO message) { return(message.GetAllRecords <CN>("RESULTSCOPIESTORepetitionsUsed", "GetRESULTSCOPIESTO")); }