Add Method to delete whole recipe with their relations and include Mediafiles to Instruction by getting recipe

This commit is contained in:
franc
2025-05-13 14:45:39 +02:00
parent ff08b82611
commit 1c47b770b4
2 changed files with 45 additions and 0 deletions
@@ -18,5 +18,7 @@
Task<Recipe> CreateRecipeForCategoryAsync(Category category, string name, string description, Difficulty difficulty, int servings, TimeSpan preparationTime, TimeSpan cookingTime);
Task<IEnumerable<Recipe>> SearchInRecipesAndIngredients(string searchterm);
Task DeleteRecipeAsync(Guid recipeId);
}
}