public ActionResult AddProject(string username, string projectTitle, string summary) { Project newProject = new Project(); newProject.Title = projectTitle; newProject.Summary = summary; studentDAL.AddProject(username, newProject); Student model = studentDAL.GetStudent(username); return(View("Index", model)); }