Example #1
0
        public static DataSet GetPagerData(int intPageSize, int intCurrentPageIndex)
        {
            int num  = 0;
            int num2 = 0;

            return(GuiGePic.GetPagerData(intPageSize, intCurrentPageIndex, ref num, ref num2));
        }
Example #2
0
 public static IList <GuiGePicInfo> GetTopNList(int intTopCount)
 {
     return(GuiGePic.GetTopNList(intTopCount, string.Empty));
 }
Example #3
0
 public static IList <GuiGePicInfo> GetAllList()
 {
     return(GuiGePic.GetList(0, string.Empty));
 }
Example #4
0
 public static GuiGePicInfo GetTopData()
 {
     return(GuiGePic.GetTopData(" Sort ASC,AutoID desc "));
 }
Example #5
0
 public static IList <GuiGePicInfo> GetPagerList(int intCurrentPageIndex, int intPageSize, ref int intTotalCount, ref int intTotalPage)
 {
     return(GuiGePic.GetPagerList("", "Sort ASC,AutoID DESC", intCurrentPageIndex, intPageSize, ref intTotalCount, ref intTotalPage));
 }
Example #6
0
 public static DataSet GetPagerData(string strFilter, string strCondition, int intPageSize, int intCurrentPageIndex, ref int intTotalCount, ref int intTotalPage)
 {
     return(GuiGePic.GetPagerData(strFilter, strCondition, " Sort asc,AutoID desc ", intPageSize, intCurrentPageIndex, ref intTotalCount, ref intTotalPage));
 }
Example #7
0
 public static DataSet GetPagerData(string strCondition, int intPageSize, int intCurrentPageIndex, ref int intTotalCount, ref int intTotalPage)
 {
     return(GuiGePic.GetPagerData("*", strCondition, intPageSize, intCurrentPageIndex, ref intTotalCount, ref intTotalPage));
 }
Example #8
0
        public static IList <GuiGePicInfo> GetList(int intTopCount, string strCondition)
        {
            string strSort = " Sort asc,AutoID desc ";

            return(GuiGePic.GetList(intTopCount, strCondition, strSort));
        }