public BenchMarkDataSource()
 {
     source = CreateDataSource();
     Report rep = new Report();
     rep.FetchBenchmarkData(OpenFileAction(path));
     report = rep.ReportData;
 }
Example #2
0
 public DataSource()
 {
     Report rep = new Report();
     source = CreateDataSource();
     rep.FetchLiveData(OpenFileAction(path));
     report = rep.ReportData;
 }