public LookupTransformActionResult(Header header, GoalStatus status, LookupTransformResult result)
 {
     this.header = header;
     this.status = status;
     this.result = result;
 }
 public LookupTransformActionResult()
 {
     this.header = new Header();
     this.status = new GoalStatus();
     this.result = new LookupTransformResult();
 }