Ejemplo n.º 1
0
        public IActionResult Index()
        {
            var userId = _userManager.GetUserId(HttpContext.User);

            var watchlists = _watchlistRepository.GetUserWatchlist(userId);

            return(View(watchlists));
        }