public IHttpActionResult GetIsbn(int isbn)
        {
            var livro = repositorio.ObterIsbn(isbn);

            return(Ok(livro));
        }