// GET: Customer/Details/5 public ActionResult Details(int?id) { if (!id.HasValue) { return(HttpNotFound()); } 客戶資料 客戶資料 = repo.GetOne客戶資料(id.Value); return(View(客戶資料)); }