public IActionResult Get(int id) { if (_peopleService.DoesExists(id)) { var person = _peopleService.GetOnePerson(id); return(new OkObjectResult(person)); } return(new NotFoundResult()); }
public IActionResult Get(int id) { if (_peopleService.DoesExists(id)) { var person = _peopleService.GetOnePerson(id); return(Ok(person)); } return(NotFound()); }