From b7706de30c8db5b590caebbc76dee7ea42f5e8d7 Mon Sep 17 00:00:00 2001 From: franc Date: Wed, 16 Apr 2025 17:27:08 +0200 Subject: [PATCH] Remove the interface declaration for MoveInstructionAsync since it's now a private method --- .../Services/Instruction/IInstructionService.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/Francesco.Recipes.World/Services/Instruction/IInstructionService.cs b/Francesco.Recipes.World/Services/Instruction/IInstructionService.cs index efb6b00..8ddedf5 100644 --- a/Francesco.Recipes.World/Services/Instruction/IInstructionService.cs +++ b/Francesco.Recipes.World/Services/Instruction/IInstructionService.cs @@ -6,6 +6,5 @@ Task MoveInstructionDownAsync(Guid instructionId); - Task MoveInstructionAsync(Guid instructionId, bool moveUp); } }