Exemplo n.º 1
0
        public ActionResult ProjectManagement(string comment)
        {
            var model = new ProjectsViewModel(_currentProjectId);
            model.SaveComment(comment);

            return PartialView("_ChatForm", model);
        }
Exemplo n.º 2
0
 public ActionResult ProjectManagement(int id)
 {
     var model = new ProjectsViewModel(id);
     _currentProjectId = id;
     return View(model);
 }