Example #1
0
        public static DataSet GetPagerData(int intPageSize, int intCurrentPageIndex)
        {
            int num  = 0;
            int num2 = 0;

            return(Ads.GetPagerData(intPageSize, intCurrentPageIndex, ref num, ref num2));
        }
Example #2
0
        public static bool DeleteAll(int placeID)
        {
            bool result;

            if (AdPlace.Delete(placeID))
            {
                Ads.DelByPlaceID(placeID);
                result = true;
            }
            else
            {
                result = false;
            }
            return(result);
        }
Example #3
0
        public static IList <AdsInfo> GetCacheAdsByPlaceID(int intPlaceID)
        {
            IEnumerable <AdsInfo> enumerable = from p in Ads.GetCacheAds()
                                               where p.BeginDate <= DateTime.Now && p.EndDate >= DateTime.Now && p.IsAudit && p.PlaceID.Equals(intPlaceID)
                                               select p;
            IList <AdsInfo> result;

            if (enumerable != null)
            {
                result = enumerable.ToList <AdsInfo>();
            }
            else
            {
                result = null;
            }
            return(result);
        }
Example #4
0
 public static AdsInfo GetCacheAdByID(int intAdID)
 {
     return((from p in Ads.GetCacheAds()
             where p.AutoID.Equals(intAdID)
             select p).FirstOrDefault <AdsInfo>());
 }
Example #5
0
 public static IList <AdsInfo> GetPagerList(int intCurrentPageIndex, int intPageSize, ref int intTotalCount, ref int intTotalPage)
 {
     return(Ads.GetPagerList("", "Sort ASC,AutoID DESC", intCurrentPageIndex, intPageSize, ref intTotalCount, ref intTotalPage));
 }
Example #6
0
 public static DataSet GetPagerData(string strFilter, string strCondition, int intPageSize, int intCurrentPageIndex, ref int intTotalCount, ref int intTotalPage)
 {
     return(Ads.GetPagerData(strFilter, strCondition, " Sort asc,AutoID desc ", intPageSize, intCurrentPageIndex, ref intTotalCount, ref intTotalPage));
 }
Example #7
0
 public static DataSet GetPagerData(string strCondition, int intPageSize, int intCurrentPageIndex, ref int intTotalCount, ref int intTotalPage)
 {
     return(Ads.GetPagerData("*", strCondition, intPageSize, intCurrentPageIndex, ref intTotalCount, ref intTotalPage));
 }
Example #8
0
 public static DataSet GetPagerData(int intPageSize, int intCurrentPageIndex, ref int intTotalCount, ref int intTotalPage)
 {
     return(Ads.GetPagerData("*", string.Empty, intPageSize, intCurrentPageIndex, ref intTotalCount, ref intTotalPage));
 }
Example #9
0
        public static IList <AdsInfo> GetList(int intTopCount, string strCondition)
        {
            string strSort = " Sort asc,AutoID desc ";

            return(Ads.GetList(intTopCount, strCondition, strSort));
        }
Example #10
0
 public static IList <AdsInfo> GetTopNList(int intTopCount, string strSort)
 {
     return(Ads.GetList(intTopCount, string.Empty, strSort));
 }
Example #11
0
 public static IList <AdsInfo> GetAllList()
 {
     return(Ads.GetList(0, string.Empty));
 }
Example #12
0
 public static AdsInfo GetTopData()
 {
     return(Ads.GetTopData(" Sort ASC,AutoID desc "));
 }