Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
12/18/13 15:47:05 (10 years ago)
Author:
psteiner
Message:

added logic getters ins content and constructor whicht supports logic

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/DataPreprocessing/HeuristicLab.DataPreprocessing/3.3/Implementations/StatisticsContent.cs

    r10245 r10252  
    1212  class StatisticsContent : Item
    1313  {
     14
     15    private readonly IStatisticsLogic statisticsLogic;
     16    public StatisticsContent(IStatisticsLogic theStatisticsLogic)
     17    {
     18      statisticsLogic = theStatisticsLogic;
     19    }
     20
    1421    public StatisticsContent(StatisticsContent content, Cloner cloner)
    1522      : base(content, cloner)
    1623    {
    1724
     25    }
     26
     27    public IStatisticsLogic StatisticsLogic
     28    {
     29      get
     30      {
     31        return statisticsLogic;
     32      }
    1833    }
    1934
Note: See TracChangeset for help on using the changeset viewer.