Esempio n. 1
0
        public async Task<ActionResult> Edit(EncuestaTemplateViewModel model)
        {
            if (ModelState.IsValid)
            {
                await this.encuestaTemplatesService.CreateOrUpdateAsync(model);

                return this.RedirectToAction("Index", "Templates");
            }

            // If we got this far, something failed, redisplay form
            return this.View(model);
        }
Esempio n. 2
0
 public ActionResult Create()
 {
     var model = new EncuestaTemplateViewModel { Habilitado = true };
     return this.View(model);
 }