public void DeleteArticle(String username, int blogId, int articleId)
 {
     _articleApplicationService.DeleteArticle(username, blogId, articleId);
 }
Beispiel #2
0
 public IActionResult Delete(Guid id)
 {
     _articleApplicationService.DeleteArticle(id);
     return(Json(new { code = 0 }));
 }