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); }