Ejemplo n.º 1
0
        public void Insert(string CountryRegionCode, string Name, DateTime ModifiedDate)
        {
            CountryRegion item = new CountryRegion();

            item.CountryRegionCode = CountryRegionCode;

            item.Name = Name;

            item.ModifiedDate = ModifiedDate;


            item.Save(UserName);
        }
Ejemplo n.º 2
0
 public bool Destroy(object CountryRegionCode)
 {
     return(CountryRegion.Destroy(CountryRegionCode) == 1);
 }
Ejemplo n.º 3
0
 public bool Delete(object CountryRegionCode)
 {
     return(CountryRegion.Delete(CountryRegionCode) == 1);
 }