public IActionResult LinkNewsToAuthor(int authorId, int newsItemId)
 {
     _authorService.LinkNewsToAuthor(authorId, newsItemId);
     return(NoContent());
 }