Ejemplo n.º 1
0
        /// <summary>
        /// 締処理済の場合(以下のSelectができる場合)Error
        /// </summary>
        /// <param name="dpe"></param>
        /// <returns></returns>
        public bool CheckPayCloseHistory(D_PayCloseHistory_Entity dpe)
        {
            D_PayCloseHistory_DL dpd = new D_PayCloseHistory_DL();
            DataTable            dt  = dpd.CheckPayCloseHistory(dpe);

            bool ret = false;

            if (dt.Rows.Count > 0)
            {
                dpe.PayCloseNO = dt.Rows[0]["PayCloseNO"].ToString();
                ret            = true;
            }

            return(ret);
        }
Ejemplo n.º 2
0
 public Shiharai_Shimeshori_BL()
 {
     bbl     = new Base_BL();
     dpch_DL = new D_PayCloseHistory_DL();
 }