public ActionResult <List <Author> > Post([FromBody] Author author)
 {
     _authorServices.AdicionarAuthor(author);
     return(Ok(_authorServices.GetAll()));
 }