public virtual StateTaxRate UpdateStateTaxRate(StateTaxRate entity)
        {
            if (entity.IsTransient())
            {
                return(entity);
            }
            StateTaxRate other = GetStateTaxRate(entity.StateTaxId);

            if (entity.Equals(other))
            {
                return(entity);
            }
            string sql = @"Update StateTaxRate set  [StateID]=@StateID
							, [TaxClassID]=@TaxClassID
							, [TaxRate]=@TaxRate
							, [CreatedOn]=@CreatedOn 
							 where StateTaxID=@StateTaxID"                            ;

            SqlParameter[] parameterArray = new SqlParameter[] {
                new SqlParameter("@StateTaxID", entity.StateTaxId)
                , new SqlParameter("@StateID", entity.StateId)
                , new SqlParameter("@TaxClassID", entity.TaxClassId)
                , new SqlParameter("@TaxRate", entity.TaxRate ?? (object)DBNull.Value)
                , new SqlParameter("@CreatedOn", entity.CreatedOn)
            };
            SqlHelper.ExecuteNonQuery(this.ConnectionString, CommandType.Text, sql, parameterArray);
            return(GetStateTaxRate(entity.StateTaxId));
        }
        public virtual StateTaxRate InsertStateTaxRate(StateTaxRate entity)
        {
            StateTaxRate other = new StateTaxRate();

            other = entity;
            if (entity.IsTransient())
            {
                string         sql            = @"Insert into StateTaxRate ( [StateID]
				,[TaxClassID]
				,[TaxRate]
				,[CreatedOn] )
				Values
				( @StateID
				, @TaxClassID
				, @TaxRate
				, @CreatedOn );
				Select scope_identity()"                ;
                SqlParameter[] parameterArray = new SqlParameter[] {
                    new SqlParameter("@StateTaxID", entity.StateTaxId)
                    , new SqlParameter("@StateID", entity.StateId)
                    , new SqlParameter("@TaxClassID", entity.TaxClassId)
                    , new SqlParameter("@TaxRate", entity.TaxRate ?? (object)DBNull.Value)
                    , new SqlParameter("@CreatedOn", entity.CreatedOn)
                };
                var identity = SqlHelper.ExecuteScalar(this.ConnectionString, CommandType.Text, sql, parameterArray);
                if (identity == DBNull.Value)
                {
                    throw new DataException("Identity column was null as a result of the insert operation.");
                }
                return(GetStateTaxRate(Convert.ToInt32(identity)));
            }
            return(entity);
        }