Add recipeid to the methods seperate the Id logic between instructionId and recipeId

This commit is contained in:
franc
2025-04-23 13:27:51 +02:00
parent 1bdb14e9d3
commit 0859e3aa2b
2 changed files with 9 additions and 9 deletions
@@ -2,8 +2,8 @@
{
public interface IInstructionService
{
Task MoveInstructionUpAsync(Guid instructionId);
Task MoveInstructionUpAsync(Guid recipeId, Guid instructionId);
Task MoveInstructionDownAsync(Guid instructionId);
Task MoveInstructionDownAsync(Guid recipeId, Guid instructionId);
}
}