public IActionResult Get(long id) { var person = _personBusiness.findbyId(id); if (person == null) { return(NotFound()); } return(Ok(person)); }