public async Task <IActionResult> Index() { Guid userID = GetUserID(); var result = await bookShelfService.GetUserBook(userID); return(View(new BookShelfViewModel() { Books = result })); }