public static IList <OrderActionInfo> GetAllList() { return(OrderAction.GetList(0, string.Empty)); }
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)); }
public static OrderActionInfo GetTopData() { return(OrderAction.GetTopData(" Sort ASC,AutoID desc ")); }
public static int AddLog(OrdersInfo order, string strOperator, string strEventContent) { return(OrderAction.AddLog(order, strOperator, strEventContent, string.Empty)); }
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)); }
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)); }
public static IList <OrderActionInfo> GetList(int intTopCount, string strCondition) { string strSort = " Sort asc,AutoID desc "; return(OrderAction.GetList(intTopCount, strCondition, strSort)); }
public static IList <OrderActionInfo> GetTopNList(int intTopCount, string strSort) { return(OrderAction.GetList(intTopCount, string.Empty, strSort)); }