コード例 #1
0
        // GET: CustomerBank
        public ActionResult Index(string keyword)
        {
            var query = repo.QueryKeyword(keyword);

            return(View(query.ToList()));
        }