public bool DeleteChainItemInfo(ArrayList ParameterList, DbTransaction RootDBT)
        {

            bool IsRootTranscation = false;
            int iResult = 0;
            bool bResult = false;
            try
            {

                MKT_ChainItemInfoDBO DBO = new MKT_ChainItemInfoDBO(ref USEDB);

                //判斷是否有傳入Root Transcation 
                IsRootTranscation = (RootDBT == null) ? true : false;

                #region 啟動交易或指定RootTranscation

                if (IsRootTranscation)
                {
                    //獨立呼叫啟動Transcation
                    Conn = USEDB.CreateConnection();
                    Conn.Open();
                    DBT = Conn.BeginTransaction();
                }
                else
                {
                    DBT = RootDBT;
                }
                #endregion
                //0.OLD_UPDATEDATE
                //1.OLD_UPDATEUID
                //2.UPDATEDATE
                //3.UPDATEUID            
                //4.CHAN_NO
                //5.ITEM
                //6.PERIOD      
                iResult = DBO.doDeleteChainItemInfo(DBT, ParameterList);

                #region 交易成功

                if (IsRootTranscation)
                {
                    //獨立呼叫Transcation成立
                    DBT.Commit();
                    bResult = true;
                }

                #endregion


            }
            catch (Exception ex)
            {
                #region 交易失敗

                if (IsRootTranscation)
                {
                    //獨立呼叫Transcation失敗
                    DBT.Rollback();
                }

                #endregion

                throw ex;
            }
            finally
            {
                #region 判斷是否關閉交易連線

                if (IsRootTranscation)
                {
                    //獨立呼叫Transcation,關閉連線
                    if (Conn.State == ConnectionState.Connecting)
                    {
                        Conn.Close();
                    }
                }

                #endregion
            }
            return bResult;
        }