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