Beispiel #1
0
        public async Task <IActionResult> EditPost([FromBody] Post post, [FromServices] EditPostCommand command)
        {
            await command.ExecuteAsync(post);

            return(Ok());
        }