Example #1
0
 public static IList <OrderActionInfo> GetAllList()
 {
     return(OrderAction.GetList(0, string.Empty));
 }
Example #2
0
 public static IList <OrderActionInfo> GetPagerList(int intCurrentPageIndex, int intPageSize, ref int intTotalCount, ref int intTotalPage)
 {
     return(OrderAction.GetPagerList("", "Sort ASC,AutoID DESC", intCurrentPageIndex, intPageSize, ref intTotalCount, ref intTotalPage));
 }
Example #3
0
 public static OrderActionInfo GetTopData()
 {
     return(OrderAction.GetTopData(" Sort ASC,AutoID desc "));
 }
Example #4
0
 public static int AddLog(OrdersInfo order, string strOperator, string strEventContent)
 {
     return(OrderAction.AddLog(order, strOperator, strEventContent, string.Empty));
 }
Example #5
0
 public static DataSet GetPagerData(string strFilter, string strCondition, int intPageSize, int intCurrentPageIndex, ref int intTotalCount, ref int intTotalPage)
 {
     return(OrderAction.GetPagerData(strFilter, strCondition, " Sort asc,AutoID desc ", intPageSize, intCurrentPageIndex, ref intTotalCount, ref intTotalPage));
 }
Example #6
0
 public static DataSet GetPagerData(string strCondition, int intPageSize, int intCurrentPageIndex, ref int intTotalCount, ref int intTotalPage)
 {
     return(OrderAction.GetPagerData("*", strCondition, intPageSize, intCurrentPageIndex, ref intTotalCount, ref intTotalPage));
 }
Example #7
0
        public static IList <OrderActionInfo> GetList(int intTopCount, string strCondition)
        {
            string strSort = " Sort asc,AutoID desc ";

            return(OrderAction.GetList(intTopCount, strCondition, strSort));
        }
Example #8
0
 public static IList <OrderActionInfo> GetTopNList(int intTopCount, string strSort)
 {
     return(OrderAction.GetList(intTopCount, string.Empty, strSort));
 }