Example #1
0
        /// <summary>
        /// 订单主信息持久化
        /// </summary>
        public override void SOPersistence()
        {
            // 持久化订单主体信息
            SODA.PersintenceMaster(this.CurrentSO, true);

            // 持久化订单商品信息
            SODA.PersintenceItem(this.CurrentSO, true);

            // 持久化订单促销信息
            SODA.PersintencePromotion(this.CurrentSO, true);

            // 持久化订单礼品卡信息
            SODA.PersintenceGiftCard(this.CurrentSO, true);

            //持久化订单其他相关信息
            SODA.PersintenceExtend(this.CurrentSO, true);

            //更新订单SIM卡信息
            SODA.UpdateSOSIMCardOrContractPhoneInfo(this.CurrentSO);
        }