PositionController.cs 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. using CZFW.Framework.Interface;
  2. using CZKJ.GBRS2.Interface;
  3. using CZKJ.GBRS2.WebMVC.Models;
  4. using Microsoft.AspNetCore.Mvc;
  5. using System.Collections.Generic;
  6. using System.ComponentModel;
  7. using System.Linq;
  8. namespace CZKJ.GBRS2.WebMVC.Controllers
  9. {
  10. /// <summary>
  11. /// 招聘信息
  12. /// </summary>
  13. public class PositionController : Controller
  14. {
  15. IGallery _galleryLogic;
  16. IPosition _positionLogic;
  17. IDictItem _dictItemLogic;
  18. public PositionController(IGallery galleryLogic, IPosition positionLogic, IDictItem dictItemLogic)
  19. {
  20. _galleryLogic = galleryLogic;
  21. _positionLogic = positionLogic;
  22. _dictItemLogic = dictItemLogic;
  23. }
  24. public IActionResult Index()
  25. {
  26. var model = new RecuritModel();
  27. var idList = new List<int> { 129, 130, 126, 127 };
  28. var galleryList = _galleryLogic.GetEntities(x => idList.Contains(x.TypeId), x => x.SortOrder, ListSortDirection.Descending);
  29. model.GalleryEntity = galleryList.FirstOrDefault(x => x.TypeId == 129);
  30. model.GalleryList = galleryList.Where(x => x.TypeId == 130).ToList();
  31. model.SalaryGalist = galleryList.Where(x => x.TypeId == 126).ToList();
  32. model.EnvironmentalList = galleryList.Where(x => x.TypeId == 127).ToList();
  33. return View(model);
  34. }
  35. /// <summary>
  36. /// 招聘详情
  37. /// </summary>
  38. /// <returns></returns>
  39. public IActionResult Detail(int id)
  40. {
  41. var entity = _positionLogic.GetItem(id);
  42. ViewBag.RelevantList = _positionLogic.GetPositionList(id,entity.TypeId,entity.DepartmentId);
  43. return View(entity);
  44. }
  45. /// <summary>
  46. /// 社会招聘
  47. /// </summary>
  48. /// <returns></returns>
  49. public IActionResult List(int? deptId, int? addressId, int typeId = 74, int pageIndex = 1, int pageSize = 10)
  50. {
  51. var model = new RecuritListModel();
  52. int rowsCount;
  53. model.DeptId = deptId;
  54. model.AddressId = addressId;
  55. model.TypeId = typeId;
  56. model.GalleryEntity = _galleryLogic.GetEntity(x => x.TypeId == (typeId == 74 ? 133 : 134));
  57. model.PositionList = _positionLogic.GetPositionList("", typeId, addressId, deptId, pageIndex, pageSize, out rowsCount);
  58. model.DeptList = _dictItemLogic.GetEntities(x => x.DictMark == "DepartmentMark");
  59. model.AddressList = _dictItemLogic.GetEntities(x => x.DictMark == "AddressMark");
  60. model.RowsCount = rowsCount;
  61. model.PageIndex = pageIndex;
  62. return View(model);
  63. }
  64. }
  65. }