Canguro.Model.Serializer.Deserializer.readCombinationsCases C# (CSharp) Method

readCombinationsCases() private method

private readCombinationsCases ( XmlNode node ) : void
node System.Xml.XmlNode
return void
        private void readCombinationsCases(XmlNode node)
        {
            foreach (XmlNode child in node.ChildNodes)
                if ("Combo".Equals(child.Name))
                    readLoadCombinationCase(child);
        }
Deserializer