public IHttpActionResult All()
        {
            var result = bllBook.All();

            return(Ok <IList <Book> >(result));
        }