Changeset 10367 for branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/StatisticsContent.cs
- Timestamp:
- 01/22/14 14:13:11 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/StatisticsContent.cs
r10313 r10367 14 14 15 15 private readonly IStatisticsLogic statisticsLogic; 16 public StatisticsContent(IStatisticsLogic theStatisticsLogic) 16 private readonly IDataGridLogic dataGridLogic; 17 public StatisticsContent(IStatisticsLogic theStatisticsLogic, IDataGridLogic theDataGridLogic) 17 18 { 18 19 statisticsLogic = theStatisticsLogic; 20 dataGridLogic = theDataGridLogic; 19 21 } 20 22 … … 27 29 public IStatisticsLogic StatisticsLogic 28 30 { 29 get 30 { 31 return statisticsLogic; 32 } 31 get { return statisticsLogic; } 32 } 33 34 public IDataGridLogic DataDridLogic { 35 get { return dataGridLogic; } 33 36 } 34 37
Note: See TracChangeset
for help on using the changeset viewer.