public ActionResult ProjectManagement(string comment) { var model = new ProjectsViewModel(_currentProjectId); model.SaveComment(comment); return PartialView("_ChatForm", model); }
public ActionResult ProjectManagement(int id) { var model = new ProjectsViewModel(id); _currentProjectId = id; return View(model); }