Implement the Sorting Logic

This commit is contained in:
franc
2025-04-15 16:11:07 +02:00
parent 0fb9333b82
commit d2560e2971
2 changed files with 63 additions and 0 deletions
@@ -0,0 +1,9 @@
namespace Francesco.Recipes.World.Services.Instruction
{
public interface IInstructionService
{
Task MoveInstructionUpAsync(Guid instructionId);
Task MoveInstructionDownAsync(Guid instructionId);
}
}