public IActionResult GetById(string id) { var user = _context.Find <User>(int.Parse(id)); return(Ok(user)); }