public static DataSet GetPagerData(int intPageSize, int intCurrentPageIndex) { int num = 0; int num2 = 0; return(Operate.GetPagerData(intPageSize, intCurrentPageIndex, ref num, ref num2)); }
public static IList <OperateInfo> GetPagerList(int intCurrentPageIndex, int intPageSize, ref int intTotalCount, ref int intTotalPage) { return(Operate.GetPagerList("", "Sort ASC,AutoID DESC", intCurrentPageIndex, intPageSize, ref intTotalCount, ref intTotalPage)); }
public static DataSet GetPagerData(string strFilter, string strCondition, int intPageSize, int intCurrentPageIndex, ref int intTotalCount, ref int intTotalPage) { return(Operate.GetPagerData(strFilter, strCondition, " Sort asc,AutoID desc ", intPageSize, intCurrentPageIndex, ref intTotalCount, ref intTotalPage)); }
public static DataSet GetPagerData(string strCondition, int intPageSize, int intCurrentPageIndex, ref int intTotalCount, ref int intTotalPage) { return(Operate.GetPagerData("*", strCondition, intPageSize, intCurrentPageIndex, ref intTotalCount, ref intTotalPage)); }
public static IList <OperateInfo> GetList(int intTopCount, string strCondition) { string strSort = " Sort asc,AutoID desc "; return(Operate.GetList(intTopCount, strCondition, strSort)); }
public static IList <OperateInfo> GetTopNList(int intTopCount, string strSort) { return(Operate.GetList(intTopCount, string.Empty, strSort)); }
public static IList <OperateInfo> GetAllList() { return(Operate.GetList(0, string.Empty)); }
public static OperateInfo GetTopData() { return(Operate.GetTopData(" Sort ASC,AutoID desc ")); }