We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8e5299 commit 81c8bafCopy full SHA for 81c8baf
Examples/Chapter15/Boc/MakeTransferController.cs
@@ -28,7 +28,7 @@ public Task<IActionResult> MakeTransfer([FromBody] MakeTransfer command)
28
from cmd in Async(Validate(command))
29
from acc in GetAccount(cmd.DebitedAccountId)
30
from result in acc.Handle(cmd)
31
- select result.Item2;
+ select result.NewState;
32
33
return outcome.Map(
34
Faulted: ex => StatusCode(500, Errors.UnexpectedError),
0 commit comments