| 12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Data;
- namespace HySoft.BaseCallCenter.BLL
- {
- public class PagerBLL
- {
- /// <summary>
- /// 分页获取数据
- /// </summary>
- /// <param name="PageSize"></param>
- /// <param name="PageIndex"></param>
- /// <param name="strWhere"></param>
- /// <returns></returns>
- public static DataTable GetListPager(string TableName, string PK, string Fields, string WhereStr, string OrderStr, int PageSize, int PageIndex, bool IsCount, out int RecordCount)
- {
- DataTable dt = DAL.PagerDAL.GetListPager(TableName, PK, Fields, WhereStr, OrderStr, PageSize, PageIndex, IsCount, out RecordCount);
- return dt;
- }
- }
- }
|