コード例 #1
0
ファイル: CommBLL.cs プロジェクト: snoopy83101/Uzor001
        /// <summary>
        /// 获得点评信息
        /// </summary>
        /// <param name="s"></param>
        /// <param name="c"></param>
        /// <param name="t"></param>
        /// <returns></returns>
        public DataSet GetCommentPageList(string s, int c, int t)
        {
            DAL.CommentDAL dal = new DAL.CommentDAL();
            DataSet        ds  = dal.GetPageList(s.ToString(), c, t);

            return(ds);
        }
コード例 #2
0
ファイル: CommBLL.cs プロジェクト: snoopy83101/Uzor001
        public DataSet GetCommentRepList(string s, int c)
        {
            DAL.CommentDAL dal = new DAL.CommentDAL();

            DataSet ds = dal.GetProCommentPageList(s, c, 5);

            return(ds);
        }