public ActionResult Edit(int id) { var ticket = _ticketService.Details(id); ticket.Description = HttpUtility.HtmlDecode(ticket.Description); return(View(ticket)); }