public static DataSet GetPagerData(int intPageSize, int intCurrentPageIndex) { int num = 0; int num2 = 0; return(VoteLog.GetPagerData(intPageSize, intCurrentPageIndex, ref num, ref num2)); }
public static IList <VoteLogInfo> GetTopNList(int intTopCount) { return(VoteLog.GetTopNList(intTopCount, string.Empty)); }
public static IList <VoteLogInfo> GetAllList() { return(VoteLog.GetList(0, string.Empty)); }
public static VoteLogInfo GetTopData() { return(VoteLog.GetTopData(" Sort ASC,AutoID desc ")); }
public static IList <VoteLogInfo> GetPagerList(int intCurrentPageIndex, int intPageSize, ref int intTotalCount, ref int intTotalPage) { return(VoteLog.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(VoteLog.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(VoteLog.GetPagerData("*", strCondition, intPageSize, intCurrentPageIndex, ref intTotalCount, ref intTotalPage)); }
public static IList <VoteLogInfo> GetList(int intTopCount, string strCondition) { string strSort = " Sort asc,AutoID desc "; return(VoteLog.GetList(intTopCount, strCondition, strSort)); }