Esempio n. 1
0
        public ActionResult Index(ScoreServerMVC.Models.Users.RegistrationViewModel user)
        {
            ///
            /// This is where we check to make sure the modelmatches what we wrote in RegsirationViewModel
            /// and if it does we need to convert it back to the Users model so we can enter a new user into the database.
            /// Probbaly not the most ideal way of doing this, but a straight cast did not work.
            /// Also find another way of verifying of user is active: I.E: send out email with link to click to activate useraccount
            ///
            if (ModelState.IsValid)
            {

                ViewBag.Title = "Success!";
                Users newUser = new Users();
                newUser.Username = user.Username;
                newUser.firstName = user.firstName;
                newUser.lastName = user.lastName;
                newUser.email = user.email;
                newUser.password = newUser.SetPassword(user.password);
                db.Users.Add(newUser);
                db.SaveChanges();
                ViewBag.Message = "You have succesfully been registered!";
                return View("../Home/Index");
            }
            ViewBag.Title = "FAILED!";
            return View(user);
        }
Esempio n. 2
0
        public ActionResult Create(Users usermodel)
        {
            if (ModelState.IsValid)
            {
                db.Users.Add(usermodel);
                db.SaveChanges();
                return RedirectToAction("Index");
            }

            return View(usermodel);
        }
Esempio n. 3
0
 public ActionResult Edit(Users usermodel)
 {
     if (ModelState.IsValid)
     {
         db.Entry(usermodel).State = EntityState.Modified;
         db.SaveChanges();
         return RedirectToAction("Index");
     }
     return View(usermodel);
 }