Gringotts.Domain.Venture.Equals C# (CSharp) Method

Equals() public method

public Equals ( Venture other ) : bool
other Venture
return bool
        public virtual bool Equals(Venture other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return Equals(other.Id, Id) && Equals(other.Name, Name);
        }

Same methods

Venture::Equals ( object obj ) : bool