AgGateway.ADAPT.ISOv4Plugin.Loaders.ProductMixLoader.Load C# (CSharp) Метод

Load() приватный Метод

private Load ( ) : ProductMix>.Dictionary
Результат ProductMix>.Dictionary
        private Dictionary<string, ProductMix> Load()
        {
            LoadProductMixes(_rootNode.SelectNodes("PDT"));
            ProcessExternalNodes();

            return _productMixes;
        }

Same methods

ProductMixLoader::Load ( TaskDataDocument taskDocument ) : ProductMix>.Dictionary

Usage Example

Пример #1
0
        public static Dictionary<string, ProductMix> Load(TaskDataDocument taskDocument)
        {
            var loader = new ProductMixLoader(taskDocument);

            return loader.Load();
        }
All Usage Examples Of AgGateway.ADAPT.ISOv4Plugin.Loaders.ProductMixLoader::Load