Example #1
0
        /// <summary>
        /// Creates a new CountryTaxRate record and adds it to the collection
        /// </summary>
        public void Add(int StateID, int TaxClassID, decimal TaxRate)
        {
            StateTaxRate str = StateTaxRate.Create(StateID, TaxClassID, TaxRate);

            this.Add(str);
        }