Esempio n. 1
0
 /// <summary>
 /// Updates this instance of PaymentMethod. Returns true on success.
 /// </summary>
 /// <returns>bool</returns>
 private bool Update()
 {
     return(DBPaymentMethod.Update(
                this.paymentMethodID,
                this.siteID,
                this.paymentProvider,
                this.name,
                this.description,
                this.displayOrder,
                this.isActive,
                this.additionalFee,
                this.usePercentage,
                this.freeOnOrdersOverXEnabled,
                this.freeOnOrdersOverXValue,
                this.useSandbox,
                this.businessEmail,
                this.securePass,
                this.hashcode,
                this.merchantId,
                this.merchantSiteCode,
                this.accessCode,
                this.guid,
                this.isDeleted));
 }