BinaryStudio.ClientManager.DomainModel.Entities.Inquiry.Equals C# (CSharp) Method

Equals() public method

public Equals ( Inquiry other ) : bool
other Inquiry
return bool
        public bool Equals(Inquiry other)
        {
            if (ReferenceEquals(null, other)) return false;
            if (ReferenceEquals(this, other)) return true;
            return other.Id == Id && Equals(other.Client, Client) && Equals(other.Source, Source)
                && Equals(other.Tags, Tags) && Equals(other.Comments, Comments);
        }

Same methods

Inquiry::Equals ( object obj ) : bool