public ActionResult <string> createCategoryNewsRelation(int categoryId, int newsItemId)
 {
     _relationService.setNewsCategoryRelations(newsItemId, categoryId);
     return(Ok());
 }