예제 #1
0
        public ActionResult RegisterDonator()
        {
            var viewmodel = new RegisterDonatorViewModel()
            {
                UserRoles = "Donator"
            };

            return(View(viewmodel));
        }
예제 #2
0
        public async Task <ActionResult> RegisterDonator(RegisterDonatorViewModel model)
        {
            if (ModelState.IsValid)
            {
                var user = new ApplicationUser {
                    FirstName  = model.FirstName,
                    LastName   = model.LastName,
                    UserName   = model.Email,
                    Email      = model.Email,
                    CreditCard = new CreditCard()
                    {
                        CVV        = model.CVV,
                        CardNumber = model.CardNumber,
                        CardOwner  = model.CardOwner,
                        Year       = model.Year,
                        Month      = model.Month,
                        CardType   = model.CardType
                    }
                };
                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>");
                    //Assign Role to user Here
                    await this.UserManager.AddToRoleAsync(user.Id, model.UserRoles);

                    //Ends Here
                    return(RedirectToAction("Index", "Home"));
                }
                ViewBag.Name = new SelectList(db.Roles.Where(u => !u.Name.Contains("Admin"))
                                              .ToList(), "Name", "Name");
                AddErrors(result);
            }

            // If we got this far, something failed, redisplay form
            return(View(model));
        }
예제 #3
0
 public RegisterDonator()
 {
     InitializeComponent();
     DataContext = new RegisterDonatorViewModel();
 }