Ejemplo n.º 1
0
        public ActionResult Index()
        {
            var list = claimManager.List();
            List<SystemClaimTypeVM> listVm = new List<SystemClaimTypeVM>();

            foreach (var item in list)
            {
                SystemClaimTypeVM vm = new SystemClaimTypeVM { Name = item.Name, Id = item.Id };
                listVm.Add(vm);
            }

            return View(listVm);
        }
Ejemplo n.º 2
0
        public ActionResult CreateClaim(SystemClaimTypeVM vm)
        {
            try
            {
                if (ModelState.IsValid)
                {
                    SystemClaimType registro = new SystemClaimType();
                    registro.Name = vm.Name;
                    claimManager.Add(registro);

                }

                return RedirectToAction("Index");
            }
            catch (Exception e)
            {
                ModelState.AddModelError("", e.Message);
                return View();
            }
        }