Exemple #1
0
        private void ParseVariable(IDictionary <string, string> properties)
        {
            var variable = new ActivityVariable();

            variable.Name = properties["variable"];

            foreach (var property in properties.Where(x => x.Key != "variable"))
            {
                variable.Properties.Add(property);
            }

            workingActivity.Variables.Add(variable);
        }
        private void ParseVariable(IDictionary<string, string> properties)
        {
            var variable = new ActivityVariable();
            variable.Name = properties["variable"];

            foreach (var property in properties.Where(x => x.Key != "variable"))
                variable.Properties.Add(property);

            workingActivity.Variables.Add(variable);
        }