예제 #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);
        }
예제 #2
0
 public bool Destroy(object CountryRegionCode)
 {
     return(CountryRegion.Destroy(CountryRegionCode) == 1);
 }
예제 #3
0
 public bool Delete(object CountryRegionCode)
 {
     return(CountryRegion.Delete(CountryRegionCode) == 1);
 }