コード例 #1
0
        public ViewResult GetBookBySearch(string title, string author)
        {
            var data = _bookData.BookBySearch(title, author);

            return(View(data));
        }