public void UnCheckSKUPeriod(ArrayList ParameterList, DbTransaction RootDBT)
        {
            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.ITM_ITM03_DBO dbo = new ITM_ITM03_DBO(ref USEDB);
                dbo.UnCheckSKUPeriod(ParameterList, DBT);

                #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
            }
        }
 public DataTable QueryItemPeriodSubsidyStore(ArrayList ParameterList)
 {
     try
     {
         DBO.ITM_ITM03_DBO dbo = new ITM_ITM03_DBO(ref USEDB);
         return dbo.QueryItemPeriodSubsidyStore(ParameterList);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 //審核時系統日是否有介於合約起迄日期中
 public DataTable CheckCNT(ArrayList ParameterList)
 {
     try
     {
         DBO.ITM_ITM03_DBO dbo = new ITM_ITM03_DBO(ref USEDB);
         return dbo.CheckCNT(ParameterList);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public DataTable QueryPeriodAccount(ArrayList ParameterList)
 {
     try
     {
         DBO.ITM_ITM03_DBO dbo = new ITM_ITM03_DBO(ref USEDB);
         return dbo.QueryPeriodAccount(ParameterList);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }