Пример #1
0
        public ActionResult PostComment(int id, string message)
        {
            var ts = new TaskService();
            ts.PostComment(id, message, SessionStorage.User.Id);

            return RedirectToAction("Show", new {id = id});
        }