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

Equals() public method

public Equals ( Mir otherMir ) : bool
otherMir Mir
return bool
        public bool Equals(Mir otherMir)
        {
            return otherMir.Id == this.Id
                    && otherMir.Name == this.Name
                    && otherMir.MandatesLimit == this.MandatesLimit;
        }

Same methods

Mir::Equals ( object obj ) : bool