Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/16/15 15:09:12 (9 years ago)
Author:
dglaser
Message:

#2388:

HeuristicLab.Services.Hive.DataAccess-3.3:

  • Removed old statistics tables
  • Updated SQL Scripts

HeuristicLab.Services.WebApp-3.3:
HeuristicLab.Services.WebApp.Status-3.3:
HeuristicLab.Services.WebApp.Statistics-3.3:

  • Minor changes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HiveStatistics/sources/HeuristicLab.Services.Hive/3.3/HiveService.cs

    r12691 r12768  
    788788    }
    789789    #endregion
    790 
    791     #region Statistics Methods
    792     public IEnumerable<Statistics> GetStatistics() {
    793       return trans.UseTransaction(() => { return dao.GetStatistics(x => true); });
    794     }
    795     public IEnumerable<Statistics> GetStatisticsForTimePeriod(DateTime from, DateTime to) {
    796       return trans.UseTransaction(() => { return dao.GetStatistics(x => x.Timestamp >= from && x.Timestamp <= to); });
    797     }
    798     #endregion
    799790  }
    800791}
Note: See TracChangeset for help on using the changeset viewer.