GalleryLogic.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. using CZFW.Framework.Interface;
  2. using CZFW.Framework.Model.Entity;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Linq;
  6. namespace CZFW.Framework.Logic
  7. {
  8. public class GalleryLogic : LogicBase<GalleryEntity>, IGallery
  9. {
  10. /// <summary>
  11. /// 根据类型列表获取广告位
  12. /// </summary>
  13. /// <param name="typeList">类型列表</param>
  14. /// <returns></returns>
  15. public IList<GalleryEntity> GetGalleryList(IList<int> typeIdList)
  16. {
  17. return GetEntities(x => typeIdList.Contains(x.TypeId), x => x.SortOrder, ListSortDirection.Descending).ToList();
  18. }
  19. /// <summary>
  20. /// 根据类型获取广告位列表
  21. /// </summary>
  22. /// <param name="typeId">类型</param>
  23. /// <returns></returns>
  24. public IList<GalleryEntity> GetGalleryList(int typeId)
  25. {
  26. return GetEntities(x => x.TypeId == typeId, x => x.SortOrder, ListSortDirection.Descending).ToList();
  27. }
  28. /// <summary>
  29. /// 根据类型获取广告位
  30. /// </summary>
  31. /// <param name="typeId">类型</param>
  32. /// <returns></returns>
  33. public GalleryEntity GetGallery(int typeId)
  34. {
  35. return GetEntity(x => x.TypeId == typeId);
  36. }
  37. public IList<GalleryEntity> GetList(int typeId, int pageIndex, int pageSize, out int rowsCount)
  38. {
  39. var queryable = Queryable.Where(x => x.TypeId == typeId);
  40. rowsCount = queryable.Count();
  41. var list = queryable.OrderByDescending(x =>x.SortOrder).Skip((pageIndex - 1) * pageSize).Take(pageSize).ToList();
  42. return list;
  43. }
  44. }
  45. }