Exemplo n.º 1
0
        public bool Insert(string CountryRegionCode, string Name)
        {
            CountryRegionDAC countryregionComponent = new CountryRegionDAC();

            return(countryregionComponent.InsertNewCountryRegion(CountryRegionCode, Name, DateTime.Today));
        }
Exemplo n.º 2
0
        public bool Insert(CountryRegion countryregion)
        {
            CountryRegionDAC countryregionComponent = new CountryRegionDAC();

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