public ContinentController()
        {
            this.euorpe = new Continent();
            this.nAmerica = new Continent();
            this.sAmerica = new Continent();
            this.australia = new Continent();
            this.asia = new Continent();
            this.africa = new Continent();
            this.other = new Continent();
            this.parser = new HtmlParser();

            this.euorpe.Name = "Europe";
            this.nAmerica.Name = "North America";
            this.asia.Name = "Asia";
            this.africa.Name = "Africa";
            this.australia.Name = "Australia";
            this.sAmerica.Name = "South America";
            this.other.Name = "I will add this country to the right continent soon";
        }
 public CountryController()
 {
     this.parser = new HtmlParser();
 }