예제 #1
0
        public async Task <IActionResult> Index()
        {
            Guid userID = GetUserID();
            var  result = await bookShelfService.GetUserBook(userID);

            return(View(new BookShelfViewModel()
            {
                Books = result
            }));
        }