Ejemplo n.º 1
0
        /// <summary>
        /// Replace fields from another item
        /// </summary>
        /// <param name="item">DatItem to pull new information from</param>
        /// <param name="fields">List of Fields representing what should be updated</param>
        public override void ReplaceFields(DatItem item, List <Field> fields)
        {
            // Replace common fields first
            base.ReplaceFields(item, fields);

            // If we don't have a PartFeature to replace from, ignore specific fields
            if (item.ItemType != ItemType.PartFeature)
            {
                return;
            }

            // Cast for easier access
            PartFeature newItem = item as PartFeature;

            // Replace the fields
            if (fields.Contains(Field.DatItem_Part_Feature_Name))
            {
                Name = newItem.Name;
            }

            if (fields.Contains(Field.DatItem_Part_Feature_Value))
            {
                Value = newItem.Value;
            }
        }
Ejemplo n.º 2
0
        public override bool Equals(DatItem other)
        {
            // If we don't have a sample, return false
            if (ItemType != other.ItemType)
            {
                return(false);
            }

            // Otherwise, treat it as a PartFeature
            PartFeature newOther = other as PartFeature;

            // If the archive information matches
            return(Name == newOther.Name && Value == newOther.Value);
        }