using System.Collections.Generic;
namespace HelloWorldMvcApp
public class HomeController : Controller
public ActionResult Index()
var model = new IndexViewModel();
model.Project = new Project() { ProjectId = 1, Title = "MyProject" };
var comments = new List<Comment>();
var c = new Comment() { CommentId = 1, ProjectId = 1, Text = "Comment 1" };
c = new Comment() { CommentId = 2, ProjectId = 1, Text = "Comment 2" };
model.Comments = comments;
model.NewComment = new Comment();
model.NewComment.ProjectId = model.Project.ProjectId;
public ActionResult CreateComment(CreateCommentViewModel model)
throw new Exception("Your New Comment Text is:" + model.NewComment.Text);
return new EmptyResult();