Пример #1
0
 public PanelMapperSelector(
     IEnumerable <IPanelMapper> panelMappers,
     IStepPanelSplitter stepPanelSplitter,
     ILogger logger)
 {
     _panelMappers      = panelMappers;
     _stepPanelSplitter = stepPanelSplitter;
     _logger            = logger;
 }
Пример #2
0
 public Step1Decoder(
     ITimingEventDecoder timingEventDecoder,
     IStepEventDecoder stepEventDecoder,
     IStep1TimingChunkDecoder timingChunkDecoder,
     IStep1StepChunkDecoder stepChunkDecoder,
     IPanelMapperSelector panelMapperSelector,
     IStepPanelSplitter stepPanelSplitter,
     IStep1ChartInfoDecoder chartInfoDecoder)
 {
     _timingEventDecoder  = timingEventDecoder;
     _stepEventDecoder    = stepEventDecoder;
     _timingChunkDecoder  = timingChunkDecoder;
     _stepChunkDecoder    = stepChunkDecoder;
     _panelMapperSelector = panelMapperSelector;
     _stepPanelSplitter   = stepPanelSplitter;
     _chartInfoDecoder    = chartInfoDecoder;
 }
Пример #3
0
 public StepEventDecoder(IStepPanelSplitter stepPanelSplitter)
 {
     _stepPanelSplitter = stepPanelSplitter;
 }