PriceAnnouncementLogic.cs 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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.Month >= startTime.Value.Month && x.DateTime.Month <= endTime.Value.Month);
  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. var query = DbContext.Set<PriceAnnouncementEntity>();
  39. var count = query.Count();
  40. if (count > 0)
  41. {
  42. return int.Parse(DbContext.Set<PriceAnnouncementEntity>().Max(x => x.DateTime).ToString("yyyy"));
  43. }
  44. else
  45. {
  46. return 2015;
  47. }
  48. }
  49. public int GetMinYear()
  50. {
  51. var query = DbContext.Set<PriceAnnouncementEntity>();
  52. var count = query.Count();
  53. if (count > 0)
  54. {
  55. return int.Parse(DbContext.Set<PriceAnnouncementEntity>().Max(x => x.DateTime).ToString("yyyy"));
  56. }
  57. else
  58. {
  59. return 2040;
  60. }
  61. }
  62. public IList<PriceAnnouncementEntity> GetTableList(int? typeId, int pageIndex, int pageSize, out int rowsCount)
  63. {
  64. IQueryable<PriceAnnouncementEntity> query = DbContext.Set<PriceAnnouncementEntity>();
  65. if (typeId.HasValue)
  66. {
  67. query = query.Where(x => x.Typeofinsuance == typeId);
  68. }
  69. rowsCount = query.Count();
  70. 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();
  71. return result.Select(x => new PriceAnnouncementEntity
  72. {
  73. TypeName = x.Name,
  74. Id = x.x.Id,
  75. Typeofinsuance = x.x.Typeofinsuance,
  76. DateTime = x.x.DateTime,
  77. DayInterestRate = x.x.DayInterestRate,
  78. YearInterestRate = x.x.YearInterestRate,
  79. }).ToList();
  80. }
  81. }
  82. }