1
0
mirror of https://github.com/bitwarden/server synced 2025-12-20 10:13:39 +00:00

Prefer Repositories for Delete of entities

This commit is contained in:
Matt Gibson
2025-10-09 18:30:13 -07:00
parent 13d666a8b0
commit ec828943a4
3 changed files with 31 additions and 9 deletions

View File

@@ -21,6 +21,6 @@ public interface IRecipeService
/// <param name="seedId">The ID of the seeded data to destroy</param>
/// <returns>The result of the destroy operation</returns>
/// <exception cref="RecipeExecutionException">Thrown when there's an error destroying the seeded data</exception>
object? DestroyRecipe(Guid seedId);
Task<object?> DestroyRecipe(Guid seedId);
List<SeededData> GetAllSeededData();
}