Beispiel #1
0
        private void ConvertScoreCalcRuleField(XmlElement output)
        {
            SCRLookup lookup = Context.Extensions[SCRLookup.Name] as SCRLookup;

            foreach (XmlElement each in output.SelectNodes("Class"))
            {
                string     name    = each.SelectSingleNode("CalcuationRule").InnerText;
                XmlElement newNode = CreateChild(each, "RefCalculationRuleID");
                newNode.InnerText = lookup.GetScoreCalcRuleID(name);
            }
        }