Ejemplo n.º 1
0
 public bool Update(CountryRegion countryregion ,string old_countryRegionCode)
 {
     CountryRegionDAC countryregionComponent = new CountryRegionDAC();
     return countryregionComponent.UpdateCountryRegion( countryregion.CountryRegionCode,  countryregion.Name,  countryregion.ModifiedDate,  old_countryRegionCode);
 }
Ejemplo n.º 2
0
 public bool Update(string CountryRegionCode, string Name, string Original_CountryRegionCode)
 {
     CountryRegionDAC countryregionComponent = new CountryRegionDAC();
     return countryregionComponent.UpdateCountryRegion(CountryRegionCode, Name, DateTime.Today, Original_CountryRegionCode);
 }