Changeset 11070 for branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.4/Implementations/ManipulationLogic.cs
- Timestamp:
- 07/01/14 17:42:44 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.4/Implementations/ManipulationLogic.cs
r11002 r11070 27 27 namespace HeuristicLab.DataPreprocessing { 28 28 public class ManipulationLogic : IManipulationLogic { 29 private ITransactionalPreprocessingData preprocessingData;30 private IStatisticsLogic statisticsLogic;31 private ISearchLogic searchLogic;29 private readonly ITransactionalPreprocessingData preprocessingData; 30 private readonly IStatisticsLogic statisticsLogic; 31 private readonly ISearchLogic searchLogic; 32 32 33 33 public IEnumerable<string> VariableNames { … … 402 402 } 403 403 404 public event DataPreprocessingChangedEventHandler Changed;405 404 } 406 405 }
Note: See TracChangeset
for help on using the changeset viewer.