Пример #1
0
        public bool Update(string CountryRegionCode, string Name, string Original_CountryRegionCode)
        {
            CountryRegionDAC countryregionComponent = new CountryRegionDAC();

            return(countryregionComponent.UpdateCountryRegion(CountryRegionCode, Name, DateTime.Today, Original_CountryRegionCode));
        }
Пример #2
0
        public bool Update(CountryRegion countryregion, string old_countryRegionCode)
        {
            CountryRegionDAC countryregionComponent = new CountryRegionDAC();

            return(countryregionComponent.UpdateCountryRegion(countryregion.CountryRegionCode, countryregion.Name, countryregion.ModifiedDate, old_countryRegionCode));
        }