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

Equals() public method

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

Same methods

Result::Equals ( object obj ) : bool