public V2V3SearchClient(SimpleHttpClient httpClient, V3IndexClient v3IndexClient, TestSettings testSettings, IRetryingAzureManagementAPIWrapper azureManagementAPIWrapper)
 {
     _httpClient                = httpClient;
     _v3IndexClient             = v3IndexClient;
     _testSettings              = testSettings;
     _azureManagementAPIWrapper = azureManagementAPIWrapper;
 }
 public GalleryClient(SimpleHttpClient httpClient, TestSettings testSettings, IRetryingAzureManagementAPIWrapper azureManagementAPIWrapper)
 {
     _httpClient   = httpClient ?? throw new ArgumentNullException(nameof(httpClient));
     _testSettings = testSettings ?? throw new ArgumentNullException(nameof(testSettings));
     _azureManagementAPIWrapper = azureManagementAPIWrapper;
 }