public void Insert(string CountryCode,string CountryText,string CountryTimeZone)
        {
            InfoCountryCodeList item = new InfoCountryCodeList();

            item.CountryCode = CountryCode;

            item.CountryText = CountryText;

            item.CountryTimeZone = CountryTimeZone;

            item.Save(UserName);
        }
        public void Update(int InfoCountryKey,string CountryCode,string CountryText,string CountryTimeZone)
        {
            InfoCountryCodeList item = new InfoCountryCodeList();
            item.MarkOld();
            item.IsLoaded = true;

            item.InfoCountryKey = InfoCountryKey;

            item.CountryCode = CountryCode;

            item.CountryText = CountryText;

            item.CountryTimeZone = CountryTimeZone;

            item.Save(UserName);
        }