/// <summary>
 /// Initializes a new instance of the <see cref="ResourceManagerRestClientBase"/> class.
 /// </summary>
 /// <param name="httpClientHelper">The azure http client wrapper to use.</param>
 public ResourceManagerRestClientBase(Components.HttpClientHelper httpClientHelper)
 {
     this.httpClientHelper = httpClientHelper;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ResourceManagerRestRestClient"/> class.
 /// </summary>
 /// <param name="endpointUri">The endpoint that this client will communicate with.</param>
 /// <param name="httpClientHelper">The azure http client wrapper to use.</param>
 public ResourceManagerRestRestClient(Uri endpointUri, Components.HttpClientHelper httpClientHelper)
     : base(httpClientHelper: httpClientHelper)
 {
     this.EndpointUri = endpointUri;
 }