Ejemplo n.º 1
0
        public void AddProperty(Guid propertyTypeId, string dataType, string name, string value)
        {
            var property = GetProperty(name);

            if (property != null)
            {
                _properties.Remove(property);
            }

            property = ActionProperty.Create(name, value);
            _properties.Add(property);
        }