using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
namespace HySoft.BaseCallCenter.BLL
{
public class PagerBLL
{
///
/// 分页获取数据
///
///
///
///
///
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;
}
}
}