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