public async Task <IActionResult> ClearAllChecked()
        {
            await _shoppingService.ClearAllCheckedShoppingItems();

            return(RedirectToAction(nameof(Index)));
        }