/// <summary> /// 添加满就送促销规则. /// </summary> /// <param name="promoteMeetAmountRule"> /// Promote_MeetAmount_Rule的对象. /// </param> /// <param name="transaction"> /// 数据库事务. /// </param> /// <returns> /// 规则的编号. /// </returns> public int Insert(Promote_MeetAmount_Rule promoteMeetAmountRule, SqlTransaction transaction) { if (promoteMeetAmountRule == null) { throw new ArgumentNullException("promoteMeetAmountRule"); } var parameters = new List<SqlParameter> { this.SqlServer.CreateSqlParameter( "PromoteMeetAmountID", SqlDbType.Int, promoteMeetAmountRule.PromoteMeetAmountID, ParameterDirection.Input), this.SqlServer.CreateSqlParameter( "MeetAmount", SqlDbType.Int, promoteMeetAmountRule.MeetAmount, ParameterDirection.Input), this.SqlServer.CreateSqlParameter( "IsDiscount", SqlDbType.Bit, promoteMeetAmountRule.IsDiscount, ParameterDirection.Input), this.SqlServer.CreateSqlParameter( "Discount", SqlDbType.Float, promoteMeetAmountRule.Discount, ParameterDirection.Input), this.SqlServer.CreateSqlParameter( "IsGiveGift", SqlDbType.Bit, promoteMeetAmountRule.IsGiveGift, ParameterDirection.Input), this.SqlServer.CreateSqlParameter( "ProductID", SqlDbType.Int, promoteMeetAmountRule.ProductID, ParameterDirection.Input), this.SqlServer.CreateSqlParameter( "IsNoPostage", SqlDbType.Bit, promoteMeetAmountRule.IsNoPostage, ParameterDirection.Input), this.SqlServer.CreateSqlParameter( "ReferenceID", SqlDbType.Int, promoteMeetAmountRule.ID, ParameterDirection.Output) }; this.SqlServer.ExecuteNonQuery(CommandType.StoredProcedure, "sp_Promote_MeetAmount_Rule_Insert", parameters, transaction); return (int)parameters.Find(parameter => parameter.ParameterName == "ReferenceID").Value; }
/// <summary> /// 修改满就送促销规则. /// </summary> /// <param name="promoteMeetAmountRule"> /// Promote_MeetAmount_Rule的对象. /// </param> /// <param name="transaction"> /// 数据库事务. /// </param> public void Update(Promote_MeetAmount_Rule promoteMeetAmountRule, SqlTransaction transaction) { var parameters = new List<SqlParameter> { this.SqlServer.CreateSqlParameter( "ID", SqlDbType.Int, promoteMeetAmountRule.ID, ParameterDirection.Input), this.SqlServer.CreateSqlParameter( "PromoteMeetAmountID", SqlDbType.Int, promoteMeetAmountRule.PromoteMeetAmountID, ParameterDirection.Input), this.SqlServer.CreateSqlParameter( "MeetAmount", SqlDbType.Int, promoteMeetAmountRule.MeetAmount, ParameterDirection.Input), this.SqlServer.CreateSqlParameter( "IsDiscount", SqlDbType.Bit, promoteMeetAmountRule.IsDiscount, ParameterDirection.Input), this.SqlServer.CreateSqlParameter( "Discount", SqlDbType.Float, promoteMeetAmountRule.Discount, ParameterDirection.Input), this.SqlServer.CreateSqlParameter( "IsGiveGift", SqlDbType.Bit, promoteMeetAmountRule.IsGiveGift, ParameterDirection.Input), this.SqlServer.CreateSqlParameter( "ProductID", SqlDbType.Int, promoteMeetAmountRule.ProductID, ParameterDirection.Input), this.SqlServer.CreateSqlParameter( "IsNoPostage", SqlDbType.Bit, promoteMeetAmountRule.IsNoPostage, ParameterDirection.Input) }; this.SqlServer.ExecuteNonQuery(CommandType.StoredProcedure, "sp_Promote_MeetAmount_Rule_Update", parameters, transaction); }