public ActionResult Manage() { var byRole = User.IsInRole("Master"); 客戶資料 客戶資料 = repo.GetByAccount(User.Identity.Name); if (客戶資料 == null) { return(HttpNotFound()); } return(View(客戶資料)); }