Ejemplo n.º 1
0
 public ActionResult EditTopic(TopicVM topicVM)
 {
     if (!_chapterService.TryEditTopic(topicVM))
     {
         return(View());
     }
     else
     {
         return(RedirectToAction("Chapter", new { id = topicVM.SubjectId }));
     }
 }