public static Country Load(String countryCode)
        {
            Country country = new Country();

            if (country.Load(countryCode))
            {
                return(country);
            }
            return(null);
        }
        public static bool Delete(String countryCode)
        {
            Country country = new Country();

            if (country.Load(countryCode))
            {
                return(country.Delete());
            }
            return(false);
        }