/// <summary>
 /// 查詢市調門市設定資料 all data
 /// </summary>
 /// <returns></returns>
 public DataTable QuerySurveryStoreGetByAll()
 {
     try
     {
         DBO.MKT_MarketSurveyStoreDBO dbo = new MKT_MarketSurveyStoreDBO(ref USEDB);
         return dbo.doQuerySurveryStoreGetByAll();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 /// <summary>
 /// 查詢市調門市設定資料 BY ID
 /// </summary>
 /// <param name="ParameterList"></param>
 /// <returns></returns>
 public DataTable QuerySurveryStoreGetByID(ArrayList ParameterList)
 {
     try
     {
         DBO.MKT_MarketSurveyStoreDBO dbo = new MKT_MarketSurveyStoreDBO(ref USEDB);
         return dbo.doQuerySurveryStoreGetByID(ParameterList);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
        /// <summary>
        /// 轉換市調人員
        /// </summary>
        /// <param name="ParameterList">更新變數</param>
        /// <param name="RootDBT">是否有主交易,無主交易輸入null</param>
        /// <returns>回傳影響筆數</returns>
        public void ExchangeInvestigator(ArrayList ParameterList,
                                 DbTransaction RootDBT,
                                 out string strMsg
                                )
        {
            bool IsRootTranscation = false;

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

                #region 啟動交易或指定RootTranscation

                if (IsRootTranscation)
                {
                    //獨立呼叫啟動Transcation
                    Conn = USEDB.CreateConnection();
                    Conn.Open();
                    DBT = Conn.BeginTransaction();
                }
                else
                {
                    DBT = RootDBT;
                }

                #endregion

                DBO.MKT_MarketSurveyStoreDBO dbo = new MKT_MarketSurveyStoreDBO(ref USEDB);
                dbo.exchangeInvestigator(ParameterList, DBT, out strMsg);

                #region 交易成功

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

                #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

            }
        }
        /// <summary>
        /// 基本表單新增多筆BCO
        /// </summary>
        /// <param name="dtInsert">Insert data table</param>
        /// <param name="RootDBT">是否有主交易,無主交易輸入null</param>
        /// <returns>回傳影響筆數</returns>
        public int CreateMultiSurveyStore(ArrayList ParameterList,
                                DataTable dtInsert,
                                DbTransaction RootDBT,
                                out string strMsg
                               )
        {
            int PID = 0;
            int intCount = 0;
            bool IsRootTranscation = false;

            try
            {
                DBO.MKT_MarketSurveyStoreDBO dbo = new MKT_MarketSurveyStoreDBO(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

                foreach (DataRow dRow in dtInsert.Rows)
                {
                    ArrayList pList = new ArrayList();
                    pList.Clear();
                    pList.Add(dRow["STORE"]);
                    pList.Add(dRow["STORE"]);
                    pList.Add(dRow["CHAN_NO"]);
                    pList.Add(dRow["STORE"]);
                    pList.Add(ParameterList[0]);
                    pList.Add(ParameterList[1]);
                    PID = dbo.doCreate(pList, DBT, out strMsg);

                    if (strMsg != "")
                    {
                        #region 交易失敗

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

                        #endregion

                        return -1;
                    }
                    intCount++;
                }

                #region 交易成功

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

                #endregion

                strMsg = "";

                return intCount;
            }
            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

            }
        }