Example #1
0
    private DataTable ChkVednorContractUnConfirm(string sYN)
    {
        try
        {

            this.ErrorMsgLabel.Text = "";
            

            #region 取得資料

            DataTable dt_Return = new DataTable();
            dt_Return = null;

            BCO.CheckVendorMonthCloseYN bco = new BCO.CheckVendorMonthCloseYN(ConntionDB);

            dt_Return = bco.QueryVednorContractUnConfirm(sYN);

            return dt_Return;
            #endregion


        }
        catch (Exception ex)
        {
            this.ErrorMsgLabel.Text = ex.ToString();
            return null;
        }

    }