Esempio n. 1
0
        public static DataSet GetPagerData(int intPageSize, int intCurrentPageIndex)
        {
            int num  = 0;
            int num2 = 0;

            return(VoteItem.GetPagerData(intPageSize, intCurrentPageIndex, ref num, ref num2));
        }
Esempio n. 2
0
        public static bool DeleteWithLog(int intVoteItemID)
        {
            bool result;

            if (VoteItem.Delete(intVoteItemID))
            {
                BizBase.dbo.DeleteTable(" DELETE FROM cms_VoteLog WHERE VoteItemID=" + intVoteItemID);
                result = true;
            }
            else
            {
                result = false;
            }
            return(result);
        }
Esempio n. 3
0
        public static IList <VoteItemInfo> GetList(int intTopCount, string strCondition)
        {
            string strSort = " Sort asc,AutoID desc ";

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