LeanEngine.Entity.SupplyChain.Equals C# (CSharp) Метод

Equals() публичный Метод

public Equals ( object obj ) : bool
obj object
Результат bool
        public override bool Equals(object obj)
        {
            SupplyChain another = obj as SupplyChain;

            if (another == null)
            {
                return false;
            }
            else
            {
                return (this.ID == another.ID);
            }
        }