public void Insert(string CountryCode, string LangCode, string CountryName)
        {
            HitblCountryNameCou item = new HitblCountryNameCou();

            item.CountryCode = CountryCode;

            item.LangCode = LangCode;

            item.CountryName = CountryName;


            item.Save(UserName);
        }
        public void Update(string CountryCode, string LangCode, string CountryName)
        {
            HitblCountryNameCou item = new HitblCountryNameCou();

            item.MarkOld();
            item.IsLoaded = true;

            item.CountryCode = CountryCode;

            item.LangCode = LangCode;

            item.CountryName = CountryName;

            item.Save(UserName);
        }
 public bool Destroy(object CountryCode)
 {
     return(HitblCountryNameCou.Destroy(CountryCode) == 1);
 }
 public bool Delete(object CountryCode)
 {
     return(HitblCountryNameCou.Delete(CountryCode) == 1);
 }