public NLPImportHandler(
     IBlipClientFactory blipClientFactory,
     IInternalLogger logger) : base(logger)
 {
     _settingsFile      = new SettingsFile();
     _blipClientFactory = blipClientFactory;
 }
 public NLPAnalyseService(
     IBlipClientFactory blipClientFactory,
     IFileManagerService fileService,
     IInternalLogger logger)
 {
     _blipClientFactory = blipClientFactory;
     _fileService       = fileService;
     _logger            = logger;
 }
 public ExportHandler(
     IBlipClientFactory blipClientFactory,
     IExcelGeneratorService excelGeneratorService,
     IExportServiceFactory exportServiceFactory)
 {
     _settingsFile         = new SettingsFile();
     BlipClientFactory     = blipClientFactory;
     ExcelGeneratorService = excelGeneratorService;
     _exportServiceFactory = exportServiceFactory;
 }
 public ExportHandler(
     IBlipClientFactory blipClientFactory,
     IExcelGeneratorService excelGeneratorService,
     IExportServiceFactory exportServiceFactory,
     IInternalLogger logger) : base(logger)
 {
     _settingsFile         = new SettingsFile();
     BlipClientFactory     = blipClientFactory;
     ExcelGeneratorService = excelGeneratorService;
     _exportServiceFactory = exportServiceFactory;
 }
 public ExportService(
     IBlipClientFactory blipClientFactory,
     IExcelGeneratorService excelGeneratorService,
     ICSVGeneratorService csvGeneratorService,
     IFileManagerService fileManagerService,
     IInternalLogger logger)
 {
     _blipClientFactory     = blipClientFactory;
     _excelGeneratorService = excelGeneratorService;
     _csvGeneratorService   = csvGeneratorService;
     _fileManagerService    = fileManagerService;
     _logger = logger;
 }
Exemple #6
0
 public CopyHandler(IBlipClientFactory blipAIClientFactory)
 {
     _settingsFile        = new SettingsFile();
     _blipAIClientFactory = blipAIClientFactory;
 }
Exemple #7
0
 public ExportHandler(IBlipClientFactory blipClientFactory)
 {
     _settingsFile     = new SettingsFile();
     BlipClientFactory = blipClientFactory;
 }
 public PingHandler(
     IBlipClientFactory blipClientFactory,
     IInternalLogger logger) : base(logger)
 {
     _blipClientFactory = blipClientFactory;
 }
Exemple #9
0
 public BucketExportHandler(IBlipClientFactory blipClientFactory) : base(blipClientFactory)
 {
 }
Exemple #10
0
 public BlipConfigurationHandler(IBlipClientFactory blipClientFactory, IInternalLogger logger) : base(logger)
 {
     _blipClientFactory = blipClientFactory;
 }
Exemple #11
0
 public NLPExportHandler(IBlipClientFactory blipClientFactory) : base(blipClientFactory)
 {
 }
 public BucketExportHandler(IBlipClientFactory blipClientFactory, IExcelGeneratorService excelGeneratorService) : base(blipClientFactory, excelGeneratorService)
 {
 }