Rename method

This commit is contained in:
franc
2025-05-05 17:08:17 +02:00
parent 0ff81912a9
commit 402f5f2fe9
@@ -9,7 +9,7 @@
Task<Recipe?> GetRecipeByIdAsync(Guid id); Task<Recipe?> GetRecipeByIdAsync(Guid id);
Task AddOrCreateIngredientToRecipeAsync(Guid recipeId, string ingredientName, int quantity, Guid unitId); Task CreateRecipeIngredientAsync(Guid recipeId, string ingredientName, int quantity, Guid unitId);
Task RemoveIngredientFromRecipeAsync(Guid recipeId, Guid ingredientId); Task RemoveIngredientFromRecipeAsync(Guid recipeId, Guid ingredientId);