public ActionResult Index()
        {
            var shoppingLists = _shoppingListService.FindAllForCurrentUser();

            return(View(new ShoppingListsIndexModel(shoppingLists, _userContext.UserId)));
        }