/// <summary>
        /// 棚卸締処理チェック処理
        /// </summary>
        /// <param name="doe"></param>
        /// <returns></returns>
        public bool D_InventoryProcessing_Select(D_InventoryProcessing_Entity de)
        {
            D_InventoryProcessing_DL dl = new D_InventoryProcessing_DL();
            DataTable dt = dl.D_InventoryProcessing_Select(de);

            if (dt.Rows.Count > 0)
            {
                de.InventoryKBN = dt.Rows[0]["InventoryKBN"].ToString();
                return(true);
            }
            else
            {
                return(false);
            }
        }
        /// <summary>
        /// 棚卸締処理にて使用
        /// </summary>
        /// <param name="de"></param>
        /// <returns></returns>
        public DataTable D_InventoryProcessing_SelectAll(D_InventoryProcessing_Entity de)
        {
            D_InventoryProcessing_DL dl = new D_InventoryProcessing_DL();

            return(dl.D_InventoryProcessing_SelectAll(de));
        }
        /// <summary>
        /// 棚卸締処理
        /// TanaoroshiShimeShoriより更新時に使用
        /// </summary>
        /// <param name = "de" ></ param >
        /// <returns></returns>
        public bool D_InventoryProcessing_Exec(D_InventoryProcessing_Entity de)
        {
            D_InventoryProcessing_DL dl = new D_InventoryProcessing_DL();

            return(dl.D_InventoryProcessing_Exec(de));
        }