public async Task <IActionResult> IndexAsync() { var booksList = await _booksManager.GetAllAsNoTrackingListAsync(); return(View(_mapper.Map <List <BookViewModel> >(booksList))); }