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