ElectionsMandateCalculator.Models.Vote.Equals C# (CSharp) Method

Equals() public method

public Equals ( Vote otherObj ) : bool
otherObj Vote
return bool
        public bool Equals(Vote otherObj)
        {
            return otherObj.MirId == this.MirId
                    && otherObj.PartyId == this.PartyId
                    && otherObj.Count == this.Count;
        }

Same methods

Vote::Equals ( object obj ) : bool