Exemplo n.º 1
0
        public async Task <IActionResult> GetAsync([FromQuery] int id)
        {
            var result = await _repository.Find <Users>(x => x.Id == id);

            return(Ok(result));
        }