using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; namespace ZXDT.CallCenter.BLL { public class Proc_Pagination { private readonly ZXDT.CallCenter.DAL.Proc_Pagination dal = new ZXDT.CallCenter.DAL.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) { return dal.GetListPager(viewtable, viewKey, searchField, sortStr,WhereStr, PageSize, PageIndex, IsCount, out RecordCount); } } }