Exemplo n.º 1
0
        public async Task <IActionResult> GetAsync(string key)
        {
            var entity = await _service.GetPersonByKeyAsync(key);

            if (entity != null)
            {
                return(Ok(entity));
            }

            return(NotFound());
        }