/// <summary> /// Get DSP Records from UDM_Q05 /// </summary> public static IEnumerable GetDSPRecords(this UDM_Q05 message) { object[] result = message.GetRecords("DSPRepetitionsUsed", "GetDSP"); if ((result != null) && (result.Count() > 0)) { for (int i = 0; i < result.Count(); i++) { yield return(result[i]); } } }
/// <summary> /// Add a new UDM_Q05 to DSP /// </summary> public static DSP AddDSP(this UDM_Q05 message) { return(message.GetDSP(message.DSPRepetitionsUsed)); }
/// <summary> /// Get all DSP Records from UDM_Q05 /// </summary> public static List <DSP> GetAllDSPRecords(this UDM_Q05 message) { return(message.GetAllRecords <DSP>("DSPRepetitionsUsed", "GetDSP")); }