Пример #1
0
 public CmsItemStorageService(AzureStorageService azureStorageService, AzureTableService tableService, IOptions <CmsConfiguration> cmsConfiguration, IOptions <AzureStorageConfig> azureStorageConfig)
 {
     this.azureStorageService = azureStorageService;
     this.tableService        = tableService;
     this.cmsConfiguration    = cmsConfiguration.Value;
     this.azureStorageConfig  = azureStorageConfig.Value;
 }
Пример #2
0
 public CmsFileStorageService(AzureStorageService azureStorageService, IOptions <AzureStorageConfig> storageConfig)
 {
     this.azureStorageService = azureStorageService;
     this.storageConfig       = storageConfig.Value;
 }