public bool IsTheSame(Risk other) { if (other == null) { return(false); } return(this.RiskAction == other.RiskAction && this.RiskDescription == other.RiskDescription && this.ProjectUId == other.ProjectUId && this.Impact == other.Impact && this.Probability == other.Probability && this.IsPrivate == other.IsPrivate && this.CreateDate == other.CreateDate); }
public bool IsTheSame(Risk other) { if (other == null) return false; return this.RiskAction == other.RiskAction && this.RiskDescription == other.RiskDescription && this.ProjectUId == other.ProjectUId && this.Impact == other.Impact && this.Probability == other.Probability && this.IsPrivate == other.IsPrivate && this.CreateDate == other.CreateDate; }