コード例 #1
0
        // GET: 客戶銀行資訊/Details/5
        public ActionResult Details(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            var CB = ClientBank.Get單一筆客戶銀行資料(id.Value);

            if (CB == null)
            {
                return(HttpNotFound());
            }
            return(View(CB));
        }