using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
namespace YTSoft.BaseCallCenter.DAL
{
public class Proc_Pagination
{
public Proc_Pagination()
{}
///
/// 分页获取数据
///
///
///
///
///
public DataTable GetListPager(string viewtable,string viewKey,string searchField,string sortStr, string WhereStr, int PageSize, int PageIndex, bool IsCount, out int RecordCount)
{
DataTable dt = DBUtility.DbHelperSQL.RunPagination(viewtable,
viewKey,
searchField,
WhereStr,
sortStr,
PageSize,
PageIndex,
IsCount,
out RecordCount
);
return dt;
}
}
}