Ejemplo n.º 1
0
        /// <summary>
        /// 获得查询分页数据
        /// </summary>
        public List <Model.article_comment> GetList(string channelName, int user_id, bool relation, int pageSize, int pageIndex, string strWhere, string filedOrder, out int recordCount)
        {
            int channelId = new BLL.site_channel().GetChannelId(channelName);//查询频道ID

            return(dal.GetList(channelName, channelId, user_id, relation, pageSize, pageIndex, strWhere, filedOrder, out recordCount));
        }
Ejemplo n.º 2
0
 /// <summary>
 /// 获得前几行数据
 /// </summary>
 public DataSet GetList(int Top, string strWhere, string filedOrder)
 {
     return(dal.GetList(Top, strWhere, filedOrder));
 }
Ejemplo n.º 3
0
 /// <summary>
 /// 获得数据列表
 /// </summary>
 public DataSet GetList(string strWhere)
 {
     return(dal.GetList(strWhere));
 }