From 556b22b8dfbc6f4f8d910ddd0267546dd6c09197 Mon Sep 17 00:00:00 2001 From: franc Date: Thu, 17 Apr 2025 10:24:08 +0200 Subject: [PATCH] Rename Refactoring --- .../Services/ShoppingList/ShoppingListService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Francesco.Recipes.World/Services/ShoppingList/ShoppingListService.cs b/Francesco.Recipes.World/Services/ShoppingList/ShoppingListService.cs index ef4e37c..d650db7 100644 --- a/Francesco.Recipes.World/Services/ShoppingList/ShoppingListService.cs +++ b/Francesco.Recipes.World/Services/ShoppingList/ShoppingListService.cs @@ -14,7 +14,7 @@ _shoppingListRepository = shoppingListRepository; } - public async Task GetShoppingListRecipeCountAsync(Guid shoppingListId) + public async Task CountRecipeLinkedToShoppingListAsync(Guid shoppingListId) { return await _shoppingListRepository.GetShoppingListRecipeCountAsync(shoppingListId); }