Example #1
0
 public ActionResult CommentsEdit(int id)
 {
     var m = new CommentsModel(id);
     return View("Profile/Comments/Edit", m);
 }
Example #2
0
 public ActionResult CommentsUpdate(CommentsModel m)
 {
     m.UpdateComments();
     return View("Profile/Comments/Display", m);
 }
Example #3
0
 public ActionResult Comments(int id)
 {
     var m = new CommentsModel(id);
     return View("Profile/Comments/Display", m);
 }