Ejemplo n.º 1
0
        public ActionResult Create(EventoEditVM vm)
        {
            if (ModelState.IsValid)
            {
                _domain.Save(vm);
                this.AlertSuccess();

                return(RedirectToAction("Index"));
            }

            this.AlertError();
            return(View(vm));
        }