Exemple #1
0
        /// <summary>
        /// Update our line data
        /// </summary>
        /// <param name="LineData"></param>
        public void UpdateLineData(MM_Line_Data[] LineData)
        {
            MM_Element FoundElem;

            foreach (MM_Line_Data InLine in LineData)
            {
                if (MM_Repository.TEIDs.TryGetValue(InLine.TEID_Ln, out FoundElem) && FoundElem is MM_Line)
                {
                    MM_Server_Interface.UpdateLineData(InLine, FoundElem as MM_Line, true);
                }
            }
            if (LineData.Length > 0)
            {
                MM_Server_Interface.UpdateTimestamp(typeof(MM_Line_Data));
            }
        }