// GET: 客戶銀行資訊
        public ActionResult Index(int?page)
        {
            var data = repo.Get客戶銀行資訊所有資料();
            // 計算出目前要顯示第幾頁的資料 ( 因為 page 為 Nullable<int> 型別 )
            int currentPageIndex = page.HasValue ? page.Value - 1 : 0;

            // 透過 ToPagedList 這個 Extension Method 將原本的資料轉成 IPagedList<T>
            return(View(data.ToPagedList(currentPageIndex, PageSize)));
        }