예제 #1
0
        // GET: Search
        public async Task <ActionResult> Index()
        {
            IEnumerable <Book> res = await _service.SearchDefaultBK();

            return(View("Index", res));
        }