PriceAnnouncementLogic.cs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. using CZFW.Framework.Logic;
  2. using CZFW.Framework.Model.Entity;
  3. using CZKJ.GBRS2.Entity;
  4. using CZKJ.GBRS2.Interface;
  5. using System;
  6. using System.Collections.Generic;
  7. using System.Linq;
  8. using System.Text;
  9. namespace CZKJ.GBRS2.Logic
  10. {
  11. public class PriceAnnouncementLogic : LogicBase<PriceAnnouncementEntity>, IPriceAnnouncement
  12. {
  13. public IList<PriceAnnouncementEntity> GetList(int typeId, DateTime? startTime, DateTime? endTime,int pageIndex, int pageSize, out int rowsCount)
  14. {
  15. IQueryable<PriceAnnouncementEntity> query = DbContext.Set<PriceAnnouncementEntity>();
  16. if (typeId != 0)
  17. {
  18. query = query.Where(x => x.Typeofinsuance == typeId);
  19. }
  20. if(startTime.HasValue&&endTime.HasValue)
  21. {
  22. query = query.Where(x => x.DateTime >= startTime && x.DateTime <= endTime);
  23. }
  24. rowsCount = query.Count();
  25. var result = query.Join(DbContext.Set<TypeEntity>(), x => x.Typeofinsuance, y => y.Id, (x, y) => new { x, y.Name }).OrderByDescending(x => x.x.DateTime).Skip((pageIndex - 1) * pageSize).Take(pageSize).ToList();
  26. return result.Select(x => new PriceAnnouncementEntity
  27. {
  28. TypeName = x.Name,
  29. Id = x.x.Id,
  30. Typeofinsuance = x.x.Typeofinsuance,
  31. DateTime = x.x.DateTime,
  32. DayInterestRate = x.x.DayInterestRate,
  33. YearInterestRate = x.x.YearInterestRate,
  34. }).ToList();
  35. }
  36. public int GetMaxYear()
  37. {
  38. return int.Parse(DbContext.Set<PriceAnnouncementEntity>().Max(x => x.DateTime).ToString("yyyy"));
  39. }
  40. public int GetMinYear()
  41. {
  42. return int.Parse(DbContext.Set<PriceAnnouncementEntity>().Min(x => x.DateTime).ToString("yyyy"));
  43. }
  44. public IList<PriceAnnouncementEntity> GetTableList(int? typeId, int pageIndex, int pageSize, out int rowsCount)
  45. {
  46. IQueryable<PriceAnnouncementEntity> query = DbContext.Set<PriceAnnouncementEntity>();
  47. if (typeId.HasValue)
  48. {
  49. query = query.Where(x => x.Typeofinsuance == typeId);
  50. }
  51. rowsCount = query.Count();
  52. var result = query.Join(DbContext.Set<TypeEntity>(), x => x.Typeofinsuance, y => y.Id, (x, y) => new { x, y.Name }).OrderByDescending(x => x.x.DateTime).Skip((pageIndex - 1) * pageSize).Take(pageSize).ToList();
  53. return result.Select(x => new PriceAnnouncementEntity
  54. {
  55. TypeName = x.Name,
  56. Id = x.x.Id,
  57. Typeofinsuance = x.x.Typeofinsuance,
  58. DateTime = x.x.DateTime,
  59. DayInterestRate = x.x.DayInterestRate,
  60. YearInterestRate = x.x.YearInterestRate,
  61. }).ToList();
  62. }
  63. }
  64. }