Exemple #1
0
 public WdaqService(
     IWdaqFileService wdaqFileService,
     ILogService logService,
     IWdaqDataParser dataParser,
     IDataExporter dataExporter,
     IWdaqSettingService settingService)
 {
     _wdaqFileService = wdaqFileService;
     _logService      = logService;
     _dataParser      = dataParser;
     _dataExporter    = dataExporter;
     _settingService  = settingService;
 }
Exemple #2
0
 public CsvDataExporter(IWdaqFileService fileService)
 {
     _fileService = fileService;
 }