Ejemplo n.º 1
0
 public static IList <EvaluationInfo> GetTopNList(int intTopCount, string strSort)
 {
     return(Evaluation.GetList(intTopCount, string.Empty, strSort));
 }
Ejemplo n.º 2
0
        public static IList <EvaluationInfo> GetList(int intTopCount, string strCondition)
        {
            string strSort = " Sort asc,AutoID desc ";

            return(Evaluation.GetList(intTopCount, strCondition, strSort));
        }
Ejemplo n.º 3
0
 public static IList <EvaluationInfo> GetAllList()
 {
     return(Evaluation.GetList(0, string.Empty));
 }
Ejemplo n.º 4
0
 public static EvaluationInfo GetTopData()
 {
     return(Evaluation.GetTopData(" Sort ASC,AutoID desc "));
 }
Ejemplo n.º 5
0
 public static IList <EvaluationInfo> GetPagerList(int intCurrentPageIndex, int intPageSize, ref int intTotalCount, ref int intTotalPage)
 {
     return(Evaluation.GetPagerList("", "Sort ASC,AutoID DESC", intCurrentPageIndex, intPageSize, ref intTotalCount, ref intTotalPage));
 }
Ejemplo n.º 6
0
 public static DataSet GetPagerData(string strFilter, string strCondition, int intPageSize, int intCurrentPageIndex, ref int intTotalCount, ref int intTotalPage)
 {
     return(Evaluation.GetPagerData(strFilter, strCondition, " Sort asc,AutoID desc ", intPageSize, intCurrentPageIndex, ref intTotalCount, ref intTotalPage));
 }
Ejemplo n.º 7
0
 public static DataSet GetPagerData(string strCondition, int intPageSize, int intCurrentPageIndex, ref int intTotalCount, ref int intTotalPage)
 {
     return(Evaluation.GetPagerData("*", strCondition, intPageSize, intCurrentPageIndex, ref intTotalCount, ref intTotalPage));
 }