Ejemplo n.º 1
0
        public ActionResult AddUser()
        {
            var model = new UserViewModel();
            model.SetCountries(paramService.GetAllCountries());
            model.SetDegrees(paramService.GetAllDegrees());
            model.SetGenders(paramService.GetGenders());
            model.SetRoles(paramService.GetAllRoles());

            return View(model);
        }