public IHttpActionResult Delete(int bookId, int authorId)
        {
            _bookStoreManager.RemoveAuthor(bookId, authorId);

            return(Ok());
        }