PriceAnnouncementController.cs 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System;
  2. using CZFW.Framework.Interface;
  3. using CZKJ.GBRS2.Interface;
  4. using CZKJ.GBRS2.WebMVC.Models;
  5. using Microsoft.AspNetCore.Mvc;
  6. namespace CZKJ.GBRS2.WebMVC.Controllers
  7. {
  8. public class PriceAnnouncementController : Controller
  9. {
  10. private readonly IPriceAnnouncement _priceAnnouncementLgoic;
  11. private readonly IGallery _galleryLogic;
  12. private readonly IType _typeLogic;
  13. private readonly IArticle _articleArticle;
  14. public PriceAnnouncementController(IPriceAnnouncement priceAnnouncementLogic, IGallery galleryLogic, IType typeLogic, IArticle articleLogic)
  15. {
  16. _priceAnnouncementLgoic = priceAnnouncementLogic;
  17. _galleryLogic = galleryLogic;
  18. _typeLogic = typeLogic;
  19. _articleArticle = articleLogic;
  20. }
  21. public IActionResult Index(int typeId, DateTime? startTime, DateTime? endTime, int pageIndex = 1, int pageSize = 20)
  22. {
  23. var model = new PriceAnnouncementIndexModel();
  24. int rowsCount;
  25. model.Banner = _galleryLogic.GetGallery(172) ?? new CZFW.Framework.Model.Entity.GalleryEntity(); ;
  26. model.TypeList = _typeLogic.GetListByParentId(169);
  27. model.List = _priceAnnouncementLgoic.GetList(typeId, startTime, endTime, pageIndex, pageSize, out rowsCount);
  28. model.TypeId = typeId;
  29. model.StartTime = startTime;
  30. model.EndTime = endTime;
  31. model.PageIndex = pageIndex;
  32. model.PageSize = pageSize;
  33. model.RowsCount = rowsCount;
  34. model.MaxYear = _priceAnnouncementLgoic.GetMaxYear();
  35. model.MinYear = _priceAnnouncementLgoic.GetMinYear();
  36. model.ArticleList = _articleArticle.GetEntities(x => x.TypeId == 176);
  37. return View(model);
  38. }
  39. public IActionResult Detail(int id)
  40. {
  41. var model = new PriceAnnouncementIndexModel();
  42. model.ArticleList = _articleArticle.GetEntities(x => x.TypeId == 176);
  43. model.Detail = _articleArticle.GetEntity(id);
  44. return View(model);
  45. }
  46. }
  47. }