public async Task <ActionResult <ArticleDto> > GetArticle(int id)
 {
     return(Ok(await _singleQuery.Execute(id)));
 }