aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/Entities/LiquidTypeBase.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-11-03 19:37:52 +0200
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-11-03 19:37:52 +0200
commitee3f1aa159ebb326e7c7053501130afa06bf47d4 (patch)
tree911ccd61d5d4bc023fa5a1748d610edddc396060 /Software/Visual_Studio/Tango.BL/Entities/LiquidTypeBase.cs
parent6db93c4c
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core;

namespace Tango.MachineStudio.MachineDesigner.Models
{
    /// <summary>
    /// Represents a hardware version collection.
    /// </summary>
    /// <seealso cref="Tango.Core.ExtendedObject" />
    /// <seealso cref="Tango.MachineStudio.MachineDesigner.Models.IHasDifference" />
    public class HardwareCollection : ExtendedObject, IHasDifference
    {
        /// <summary>
        /// Gets or sets the name of the collection.
        /// </summary>
        public String CollectionName { get; set; }

        /// <summary>
        /// Gets or sets the components.
        /// </summary>
        public SynchronizedObservableCollection<HardwareComponent> Components { get; set; }

        /// <summary>
        /// Gets a value indicating whether this instance has differences.
        /// </summary>
        public bool HasDifferences
        {
            get
            {
                return Components.Any(item => item.HasDifferences);
            }
        }

        /// <summary>
        /// Initializes a new instance of the <see cref="HardwareCollection"/> class.
        /// </summary>
        public HardwareCollection()
        {
            Components = new SynchronizedObservableCollection<HardwareComponent>();
        }
    }
}