예제 #1
0
        public ActionResult Edit(int id)
        {
            var ticket = _ticketService.Details(id);

            ticket.Description = HttpUtility.HtmlDecode(ticket.Description);
            return(View(ticket));
        }