Esempio n. 1
0
 public static DataSet GetPagerData(string strFilter, string strCondition, int intPageSize, int intCurrentPageIndex, ref int intTotalCount, ref int intTotalPage)
 {
     return(Orders.GetPagerData(strFilter, strCondition, " Sort asc,AutoID desc ", intPageSize, intCurrentPageIndex, ref intTotalCount, ref intTotalPage));
 }
Esempio n. 2
0
 public static IList <OrdersInfo> GetPagerList(int intCurrentPageIndex, int intPageSize, ref int intTotalCount, ref int intTotalPage)
 {
     return(Orders.GetPagerList("", "Sort ASC,AutoID DESC", intCurrentPageIndex, intPageSize, ref intTotalCount, ref intTotalPage));
 }
Esempio n. 3
0
 public static DataSet GetPagerData(string strCondition, int intPageSize, int intCurrentPageIndex, ref int intTotalCount, ref int intTotalPage)
 {
     return(Orders.GetPagerData("*", strCondition, intPageSize, intCurrentPageIndex, ref intTotalCount, ref intTotalPage));
 }
Esempio n. 4
0
        public static IList <OrdersInfo> GetList(int intTopCount, string strCondition)
        {
            string strSort = " Sort asc,AutoID desc ";

            return(Orders.GetList(intTopCount, strCondition, strSort));
        }
Esempio n. 5
0
 public static IList <OrdersInfo> GetTopNList(int intTopCount, string strSort)
 {
     return(Orders.GetList(intTopCount, string.Empty, strSort));
 }
Esempio n. 6
0
 public static IList <OrdersInfo> GetAllList()
 {
     return(Orders.GetList(0, string.Empty));
 }
Esempio n. 7
0
 public static OrdersInfo GetTopData()
 {
     return(Orders.GetTopData(" Sort ASC,AutoID desc "));
 }