Esempio n. 1
0
 /// <summary>
 /// Updates this instance of CartOffer. Returns true on success.
 /// </summary>
 /// <returns>bool</returns>
 private bool Update()
 {
     return(DBCartOffer.Update(
                this.itemGuid,
                this.offerGuid,
                this.taxClassGuid,
                this.offerPrice,
                this.addedToCart,
                this.quantity,
                this.tax,
                this.isDonation));
 }
Esempio n. 2
0
 /// <summary>
 /// Updates this instance of CartOffer. Returns true on success.
 /// </summary>
 /// <returns>bool</returns>
 private bool Update()
 {
     return(DBCartOffer.Update(
                this.ItemGuid,
                this.OfferGuid,
                this.TaxClassGuid,
                this.OfferPrice,
                this.AddedToCart,
                this.Quantity,
                this.Tax,
                this.IsDonation,
                this.MaxPerOrder));
 }