public ClientSubmissionReport(int experimentId, ValidationReport validationReport, WaitEstimate waitEstimate, double minTimeToLive)
 {
     this.validationReport = validationReport;
     this.experimentId = experimentId;
     this.minTimeToLive = minTimeToLive;
     this.waitEstimate = waitEstimate;
 }
 public ClientSubmissionReport(int experimentId)
 {
     this.experimentId = experimentId;
     this.validationReport = new ValidationReport();
     this.waitEstimate = new WaitEstimate();
 }
 //-------------------------------------------------------------------------------------------------//
 public SubmissionReport()
 {
     this.experimentId = -1;
     this.validationReport = new ValidationReport();
     this.waitEstimate = new WaitEstimate();
 }