// GET: CustomerBank
        public ActionResult Index(string keyword)
        {
            var query = repo.QueryKeyword(keyword);

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