Example #1
0
 public SuccessResult(Command c)
     : base(c, true, null)
 {
 }
Example #2
0
 public ActionResult(Command command, bool success, object error) : base("actionResult")
 {
     this.command = command;
     this.success = success;
     this.error = error;
 }
Example #3
0
 public ErrorResult(Command command, HsException result) : base(command, false, result.Serialize())
 {
 }