public IHttpActionResult Put(AuthorEditModel model)
        {
            if (!ModelState.IsValid)
            {
                return(BadRequest(ModelState));
            }
            _bookStoreManager.UpdateAuthor(model);

            return(Ok());
        }