public SettingsStorageService(IReloadingManager <MarginTradingMarketMakerSettings> settings,
                               IConvertService convertService, ISettingsMigrationService settingsMigrationService,
                               IAzureBlobStorageFactoryService azureBlobStorageFactoryService)
 {
     _convertService           = convertService;
     _settingsMigrationService = settingsMigrationService;
     _blobStorage = azureBlobStorageFactoryService.Create(settings.Nested(s => s.Db.ConnectionString));
 }
예제 #2
0
 public SettingsStorageService(IReloadingManager <MarginTradingOrderbookAggregatorSettings> settings,
                               IConvertService convertService, IAzureBlobStorageFactoryService azureBlobStorageFactoryService)
 {
     _convertService = convertService;
     _blobStorage    = azureBlobStorageFactoryService.Create(settings.Nested(s => s.Db.ConnectionString));
 }