Ejemplo n.º 1
0
        public async Task <IActionResult> InsertAsync([FromBody] PersonInput input)
        {
            await _personAppService.InsertAsync(input);

            return(Created(Request.Path, new { success = true }));
        }