Пример #1
0
 private bool Update()
 {
     return(DBOrder.Update(
                this.orderID,
                this.siteID,
                this.orderGuid,
                this.orderCode,
                this.orderSubtotal,
                this.orderShipping,
                this.orderDiscount,
                this.orderTax,
                this.orderTotal,
                this.currencyCode,
                this.couponCode,
                this.orderNote,
                this.billingFirstName,
                this.billingLastName,
                this.billingEmail,
                this.billingAddress,
                this.billingPhone,
                this.billingMobile,
                this.billingFax,
                this.billingStreet,
                this.billingWard,
                this.billingDistrictGuid,
                this.billingProvinceGuid,
                this.billingCountryGuid,
                this.shippingFirstName,
                this.shippingLastName,
                this.shippingEmail,
                this.shippingAddress,
                this.shippingPhone,
                this.shippingMobile,
                this.shippingFax,
                this.shippingWard,
                this.shippingStreet,
                this.shippingDistrictGuid,
                this.shippingProvinceGuid,
                this.shippingCountryGuid,
                this.orderStatus,
                this.paymentStatus,
                this.shippingStatus,
                this.shippingMethod,
                this.paymentMethod,
                this.invoiceCompanyName,
                this.invoiceCompanyAddress,
                this.invoiceCompanyTaxCode,
                this.customValuesXml,
                this.stateID,
                this.userGuid,
                this.createdFromIP,
                this.createdBy,
                this.createdUtc,
                this.isDeleted,
                this.userPoint,
                this.userPointDiscount));
 }
Пример #2
0
 public void Update(Order entity)
 {
     dbOrder.Update(entity);
 }