Example #1
0
    private DataTable ChkVednorCotractOverdue(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.QueryVednorCotractOverdue(sYN);
            return dt_Return;
            #endregion


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

    }