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

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

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