public IActionResult DeleteAuthor(int authorId)
 {
     _authorsService.DeleteAuthor(authorId);
     return(NoContent());
 }