Ejemplo n.º 1
0
        public ActionResult Show(Int32?id, Pager p)
        {
            ViewBag.Task = WorkTask.FindByID(id ?? 0);
            var list = TaskComment.Search(id ?? 0, p);

            ViewBag.HeaderTitle   = null;
            ViewBag.HeaderContent = null;

            return(View(list));
        }