public static DataSet GetPagerData(int intPageSize, int intCurrentPageIndex) { int num = 0; int num2 = 0; return(AdPlace.GetPagerData(intPageSize, intCurrentPageIndex, ref num, ref num2)); }
public static bool DeleteAll(int placeID) { bool result; if (AdPlace.Delete(placeID)) { Ads.DelByPlaceID(placeID); result = true; } else { result = false; } return(result); }
public static IList <AdPlaceInfo> GetList(int intTopCount, string strCondition) { string strSort = " Sort asc,AutoID desc "; return(AdPlace.GetList(intTopCount, strCondition, strSort)); }
public static IList <AdPlaceInfo> GetTopNList(int intTopCount, string strSort) { return(AdPlace.GetList(intTopCount, string.Empty, strSort)); }
public static IList <AdPlaceInfo> GetAllList() { return(AdPlace.GetList(0, string.Empty)); }
public static AdPlaceInfo GetTopData() { return(AdPlace.GetTopData(" Sort ASC,AutoID desc ")); }
public static int HasAdsCount(int intPlace) { return(AdPlace.GetCount("PlaceID=" + intPlace)); }
public static AdPlaceInfo GetCacheAdPlaceById(int intPlaceID) { return((from p in AdPlace.GetCacheAdPlaces() where p.AutoID.Equals(intPlaceID) select p).FirstOrDefault <AdPlaceInfo>()); }
public static IList <AdPlaceInfo> GetCurrCacheAdPlaces() { return((from p in AdPlace.GetCacheAdPlaces() where p.Lang.Equals(JObject.cultureLang) select p).ToList <AdPlaceInfo>()); }
public static IList <AdPlaceInfo> GetPagerList(int intCurrentPageIndex, int intPageSize, ref int intTotalCount, ref int intTotalPage) { return(AdPlace.GetPagerList("", "Sort ASC,AutoID DESC", intCurrentPageIndex, intPageSize, ref intTotalCount, ref intTotalPage)); }
public static DataSet GetPagerData(string strFilter, string strCondition, int intPageSize, int intCurrentPageIndex, ref int intTotalCount, ref int intTotalPage) { return(AdPlace.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(AdPlace.GetPagerData("*", strCondition, intPageSize, intCurrentPageIndex, ref intTotalCount, ref intTotalPage)); }