Exemple #1
0
 public ActionResult Create(EditoraViewModel editoraViewModel)
 {
     try
     {
         _editoraService.IncluirEditora(editoraViewModel.EditoraViewModelToEditora());
         return(RedirectToAction("Index"));
     }
     catch
     {
         return(View());
     }
 }