示例#1
0
        /// <summary>
        /// 获取PathInfo信息
        /// </summary>
        /// <param name="condition">查询条件</param>
        /// <returns>查询到的表</returns>
        private DataTable GetPathInfo(string condition)
        {
            if (infoBll == null)
            {
                infoBll = new PathInfoBll();
            }

            DataTable dt = infoBll.SelectPathInfo(condition);

            return(dt);
        }
示例#2
0
 private DataTable InitializeData(string cond)
 {
     return(pbll.SelectPathInfo(cond));
     //return new DataTable();
 }