Exemple #1
0
 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);
 }
Exemple #2
0
 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;
 }