zmm 6 years ago
parent
commit
21f5961beb

+ 2 - 0
CZKJ.GBRS2.WebMVC/Controllers/PriceAnnouncementController.cs

@@ -2,12 +2,14 @@
2 2
 using System.Collections.Generic;
3 3
 using System.Linq;
4 4
 using System.Threading.Tasks;
5
+using CZKJ.GBRS2.Interface;
5 6
 using Microsoft.AspNetCore.Mvc;
6 7
 
7 8
 namespace CZKJ.GBRS2.WebMVC.Controllers
8 9
 {
9 10
     public class PriceAnnouncementController : Controller
10 11
     {
12
+        private readonly IPriceAnnouncement _priceAnnouncementLgoic;
11 13
         public IActionResult Index()
12 14
         {
13 15
             return View();

+ 5 - 7
CZKJ.GBRS2/Logic/PriceAnnouncementLogic.cs

@@ -13,11 +13,11 @@ namespace CZKJ.GBRS2.Logic
13 13
     {
14 14
         public IList<PriceAnnouncementEntity> GetTableList(int? typeId, int pageIndex, int pageSize, out int rowsCount)
15 15
         {
16
-            var query = DbContext.Set<PriceAnnouncementEntity>();
17
-            //if (typeId.HasValue)
18
-            //{
19
-            //    query = query.Where(x => x.Typeofinsuance == typeId);
20
-            //}
16
+            IQueryable<PriceAnnouncementEntity> query = DbContext.Set<PriceAnnouncementEntity>();
17
+            if (typeId.HasValue)
18
+            {
19
+                query = query.Where(x => x.Typeofinsuance == typeId);
20
+            }
21 21
             rowsCount = query.Count();
22 22
             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();
23 23
             return result.Select(x => new PriceAnnouncementEntity
@@ -29,8 +29,6 @@ namespace CZKJ.GBRS2.Logic
29 29
                 DayInterestRate = x.x.DayInterestRate,
30 30
                 YearInterestRate = x.x.YearInterestRate,
31 31
             }).ToList();
32
-           // rowsCount = 10;
33
-           //return new List<PriceAnnouncementEntity>();
34 32
         }
35 33
     }
36 34
 }