Пример #1
0
        public static DataSet GetPagerData(int intPageSize, int intCurrentPageIndex)
        {
            int num  = 0;
            int num2 = 0;

            return(PostageModel.GetPagerData(intPageSize, intCurrentPageIndex, ref num, ref num2));
        }
Пример #2
0
        public static IList <PostageModelInfo> GetList(int intTopCount, string strCondition)
        {
            string strSort = " Sort asc,AutoID desc ";

            return(PostageModel.GetList(intTopCount, strCondition, strSort));
        }
Пример #3
0
 public static IList <PostageModelInfo> GetTopNList(int intTopCount, string strSort)
 {
     return(PostageModel.GetList(intTopCount, string.Empty, strSort));
 }
Пример #4
0
 public static IList <PostageModelInfo> GetAllList()
 {
     return(PostageModel.GetList(0, string.Empty));
 }
Пример #5
0
 public static PostageModelInfo GetTopData()
 {
     return(PostageModel.GetTopData(" Sort ASC,AutoID desc "));
 }
Пример #6
0
 public static IList <PostageModelInfo> GetPagerList(int intCurrentPageIndex, int intPageSize, ref int intTotalCount, ref int intTotalPage)
 {
     return(PostageModel.GetPagerList("", "Sort ASC,AutoID DESC", intCurrentPageIndex, intPageSize, ref intTotalCount, ref intTotalPage));
 }
Пример #7
0
 public static DataSet GetPagerData(string strFilter, string strCondition, int intPageSize, int intCurrentPageIndex, ref int intTotalCount, ref int intTotalPage)
 {
     return(PostageModel.GetPagerData(strFilter, strCondition, " Sort asc,AutoID desc ", intPageSize, intCurrentPageIndex, ref intTotalCount, ref intTotalPage));
 }
Пример #8
0
 public static DataSet GetPagerData(string strCondition, int intPageSize, int intCurrentPageIndex, ref int intTotalCount, ref int intTotalPage)
 {
     return(PostageModel.GetPagerData("*", strCondition, intPageSize, intCurrentPageIndex, ref intTotalCount, ref intTotalPage));
 }