Exemple #1
0
 public ItemScoreInfo(int points, int maxPoints, string confLevel, ScoringStatus status, string dimension, ScoreRationale rationale)
 {
     this.Points        = points;
     this.MaxScore      = maxPoints; // -1 indicates unknown
     this.ConfLevelText = confLevel;
     this.Status        = status;
     this.Dimension     = dimension ?? "overall";
     this.Rationale     = rationale;
 }
Exemple #2
0
 public ScoreRationale(ScoreRationale other)
 {
     this.Msg = other.Msg;
 }
Exemple #3
0
 public ItemScoreInfo(int points, int maxPoints, ScoringStatus status, string dimension, ScoreRationale rationale)
     : this(points, maxPoints, null, status, dimension, rationale)
 {
 }