Esempio n. 1
0
        /// <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]);
                }
            }
        }
Esempio n. 2
0
 /// <summary>
 /// Add a new UDM_Q05 to DSP
 /// </summary>
 public static DSP AddDSP(this UDM_Q05 message)
 {
     return(message.GetDSP(message.DSPRepetitionsUsed));
 }
Esempio n. 3
0
 /// <summary>
 /// Get all DSP Records from UDM_Q05
 /// </summary>
 public static List <DSP> GetAllDSPRecords(this UDM_Q05 message)
 {
     return(message.GetAllRecords <DSP>("DSPRepetitionsUsed", "GetDSP"));
 }