/// <summary>
 /// Default constructor for DI
 /// </summary>
 public WebProxyServerOrchestrator(IMemoryCache cache, WebServerProperties webServerProperties, IHostingEnvironment env)
 {
     this.Cache = cache;
     this.WebServerProperties = webServerProperties;
     this.Environment         = env;
 }
 /// <summary>
 /// Default constructor for DI
 /// </summary>
 public WebProxyServerOrchestrator(IMemoryCache cache, WebServerProperties webServerProperties)
 {
     this.Cache = cache;
     this.WebServerProperties = webServerProperties;
 }