Пример #1
0
        public void UpdateAttributeValue(UserAttributeValue attributeValue)
        {
            var idx = _attributeValues.FindIndex(x => x.UserAttributeId == attributeValue.UserAttributeId);

            _attributeValues[idx] = attributeValue;
        }
Пример #2
0
 public void RemoveAttributeValue(UserAttributeValue attributeValue)
 {
     _attributeValues.Remove(attributeValue);
 }
Пример #3
0
 public void AddAttributeValue(UserAttributeValue attributeValue)
 {
     _attributeValues.Add(attributeValue);
 }