Exemple #1
0
 public ActionResult Insert(Talk newTalk)
 {
     var talkService = new TalkService();
     talkService.AddTalk(newTalk);
     return RedirectToAction("Index");
 }
Exemple #2
0
 public ActionResult SubmitTalk(Talk talk)
 {
     var talkService = new TalkService();
     talkService.AddTalk(talk);
     return RedirectToAction("Index");
 }