public IActionResult DeleteAuthorById(int id)
 {
     _authorService.DeleteAuthorById(id);
     return(NoContent());
 }