public async Task <IActionResult> PostAsync([FromBody] CreatePersonModel model, [FromServices] ICreatePersonModelToPersonMapper mapper)
        {
            var entity = mapper.Map(model);

            await _service.CreatePersonAsync(entity);

            return(Created($"/api/persons/{entity.Key}", model));
        }