Пример #1
0
        //private 客戶資料Entities db = new 客戶資料Entities();

        // GET: 客戶銀行資訊
        public ActionResult Index(string SortBy, string search, int PageNo = 1)
        {
            var 客戶銀行資訊 = 客戶銀行資訊repo.Get篩選後客戶銀行資訊(SortBy, search);

            ViewBag.search = search;
            ViewBag.SortBy = SortBy;
            ViewBag.PageNo = PageNo;

            return(View(客戶銀行資訊.ToPagedList(PageNo, 10)));
        }