Beispiel #1
0
 public UnitReport(DateTime starttime, DateTime endtime, String mode, String version)
 {
     this.starttime  = starttime;
     this.endtime    = endtime;
     this.mode       = mode;
     this.version    = version;
     this.Station    = new _Station();
     this.Operator   = new _Operator();
     this.Cathegory  = new _Cathegory();
     this.TestRun    = new _TestRun();
     this.Properties = new _PropertyUR[0];
     this.AddProperty("Memory", "N/A");
 }
Beispiel #2
0
 public UnitReport()
 {
     this.starttime  = DateTime.Now;
     this.endtime    = DateTime.Now;
     this.mode       = "";
     this.version    = "";
     this.Station    = new _Station();
     this.Operator   = new _Operator();
     this.Cathegory  = new _Cathegory();
     this.TestRun    = new _TestRun();
     this.Properties = new _PropertyUR[0];
     this.AddProperty("Memory", "N/A");
 }