Exemple #1
0
        public async Task <IActionResult> Update(string id, [FromBody] UpdateAppCommand command)
        {
            command.Id = id;
            var result = await _dispatcher.ExecuteCommand(command);

            return(this.HandleUpdateCommandResult(result));
        }