コード例 #1
0
        public ActionResult GetComments(int id)
        {
            var comments = _ticketService.GetComments(id);

            return(PartialView("_Comments", comments));
        }