Esempio n. 1
0
 public Result(
     RallyResults.Common.Status status,
     string description)
 {
     this.Status      = status;
     this.Description = description;
 }
Esempio n. 2
0
 public Result(
     RallyResults.Common.Status status,
     string description,
     object value)
 {
     this.Status      = status;
     this.Description = description;
     this.Value       = value;
 }
Esempio n. 3
0
 public Result(
     RallyResults.Common.Status status)
 {
     this.Status = status;
 }