/// <summary> /// Get FT1 Records from DFT_P03 /// </summary> public static IEnumerable GetFT1Records(this DFT_P03 message) { object[] result = message.GetRecords("FT1RepetitionsUsed", "GetFT1"); if ((result != null) && (result.Count() > 0)) { for (int i = 0; i < result.Count(); i++) { yield return(result[i]); } } }
/// <summary> /// Add a new DFT_P03 to FT1 /// </summary> public static FT1 AddFT1(this DFT_P03 message) { return(message.GetFT1(message.FT1RepetitionsUsed)); }
/// <summary> /// Get all FT1 Records from DFT_P03 /// </summary> public static List <FT1> GetAllFT1Records(this DFT_P03 message) { return(message.GetAllRecords <FT1>("FT1RepetitionsUsed", "GetFT1")); }