protected bool Equals(MultiValueNumericRangeLink other)
 {
     return this.InstancesPercentage.Equals(other.InstancesPercentage)
            && this.InstancesCount == other.InstancesCount && this.TestResult.Equals(other.TestResult)
            && this.RangeEnd.Equals(other.RangeEnd) && this.RangeStart.Equals(other.RangeStart);
 }
 protected bool Equals(MultiValueNumericRangeLink other)
 {
     return(this.InstancesPercentage.Equals(other.InstancesPercentage) &&
            this.InstancesCount == other.InstancesCount && this.TestResult.Equals(other.TestResult) &&
            this.RangeEnd.Equals(other.RangeEnd) && this.RangeStart.Equals(other.RangeStart));
 }