Esempio n. 1
0
        public async Task <ActionResult> Register(RegisterViewModel model)
        {
            if (ModelState.IsValid)
            {
                UserDetails user1 = new UserDetails {
                    Username = model.Fname + " " + model.Lname, Email = model.Email, Fname = model.Fname, Lname = model.Lname, Zipcode = model.Zipcode, Isdonor = model.Isdonor, Sname = model.Sname, Szip = model.Szip
                };
                var user = new ApplicationUser {
                    UserName = model.Email, Email = model.Email, Fname = model.Fname, Lname = model.Lname, Zipcode = model.Zipcode, Isdonor = model.Isdonor, Sname = model.Sname, Szip = model.Szip
                };
                var result = await UserManager.CreateAsync(user, model.Password);

                if (result.Succeeded)
                {
                    await SignInManager.SignInAsync(user, isPersistent : false, rememberBrowser : false);

                    // For more information on how to enable account confirmation and password reset please visit http://go.microsoft.com/fwlink/?LinkID=320771
                    // Send an email with this link
                    // string code = await UserManager.GenerateEmailConfirmationTokenAsync(user.Id);
                    // var callbackUrl = Url.Action("ConfirmEmail", "Account", new { userId = user.Id, code = code }, protocol: Request.Url.Scheme);
                    // await UserManager.SendEmailAsync(user.Id, "Confirm your account", "Please confirm your account by clicking <a href=\"" + callbackUrl + "\">here</a>");
                    UserDataLayer ur = new UserDataLayer();
                    ur.AddUser(user1);
                    return(RedirectToAction("Index", "Home"));
                }
                AddErrors(result);
            }

            // If we got this far, something failed, redisplay form
            return(View(model));
        }
Esempio n. 2
0
 public string CreateUser(tbl_users userDetail)
 {
     try
     {
         userContext.AddUser(userDetail);
         return("User Added");
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Esempio n. 3
0
 public void AddUser(User user)
 {
     try
     {
         user.Password = Encryption.Encrypt(user.Password);
         userDataLayer.AddUser(user);
     }
     catch (Exception e)
     {
         ExceptionHandler.PrintException(e, new StackTrace(true));
         throw e;
     }
 }