AgGateway.ADAPT.ISOv4Plugin.Loaders.ProductMixLoader.IsProductMix C# (CSharp) Method

IsProductMix() private static method

private static IsProductMix ( XmlNode inputNode ) : bool
inputNode System.Xml.XmlNode
return bool
        private static bool IsProductMix(XmlNode inputNode)
        {
            var productType = inputNode.GetXmlNodeValue("@F");

            return !string.IsNullOrEmpty(productType)
                && string.Equals(productType, "2", StringComparison.OrdinalIgnoreCase)
                && inputNode.SelectNodes("PRN").Count > 0;
        }