Esempio n. 1
0
        public bool M_Location_SelectData(M_Location_Entity me)
        {
            M_Location_DL mldl = new M_Location_DL();
            DataTable     dt   = mldl.M_Location_SelectData(me);

            if (dt.Rows.Count > 0)
            {
                return(true);
            }
            return(false);
        }
        public bool M_Location_SelectForTanaoroshi(D_InventoryProcessing_Entity de)
        {
            M_Location_DL dl = new M_Location_DL();
            DataTable     dt = dl.M_Location_SelectForTanaoroshi(de);

            if (dt.Rows.Count > 0)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Esempio n. 3
0
 public MasterTouroku_Souko_BL()
 {
     msdl = new M_Souko_DL();
     mzdl = new M_ZipCode_DL();
     mldl = new M_Location_DL();
 }
        /// <summary>
        /// 棚検索にて使用
        /// </summary>
        /// <param name="de"></param>
        /// <returns></returns>
        public DataTable M_Location_SelectAll(M_Location_Entity de)
        {
            M_Location_DL mdl = new M_Location_DL();

            return(mdl.M_Location_SelectAll(de));
        }