private YahooStockServerFactory(Country country)
 {
     this.country = country;
     stockServer = new YahooStockServer(country);
     marketServer = new YahooMarketServer(country);
 }
 private GoogleStockServerFactory(Country country)
 {
     marketServer = new GoogleMarketServer(country);
 }