public IActionResult Details(int id) { try { return(View(articleService.Details(id))); } catch (Exception e) { return(BadRequest(e.Message)); } }