Exemplo n.º 1
0
        public ActionResult RegisterTeacher()
        {
            ApplicationDbContext db    = new ApplicationDbContext();
            TeachViewModel       model = new TeachViewModel();

            model.Departments = db.Departments.ToList();
            return(View(model));
        }
Exemplo n.º 2
0
        public async Task <ActionResult> RegisterTeacher(TeachViewModel model)
        {
            ApplicationDbContext db = new ApplicationDbContext();

            if (ModelState.IsValid)
            {
                var user = new ApplicationUser {
                    UserName = model.TeacherEmail, Email = model.TeacherEmail
                };
                var result = await UserManager.CreateAsync(user, model.Password);

                if (result.Succeeded)
                {
                    UserManager.AddToRole(user.Id, "Teacher");

                    await SignInManager.SignInAsync(user, isPersistent : false, rememberBrowser : false);

                    await UserManager.AddToRoleAsync(user.Id, "Teacher");

                    Teacher teacher = new Teacher()
                    {
                        TeacherId    = user.Id,
                        FirstName    = model.FirstName,
                        LastName     = model.LastName,
                        Gender       = model.Gender,
                        TeacherEmail = model.TeacherEmail,
                        DepartmentId = model.DepartmentId,
                        PhoneNumber  = model.PhoneNumber,

                        Degree = model.Degree,

                        Address = model.Address
                    };
                    db.Teachers.Add(teacher);
                    db.SaveChanges();
                    // For more information on how to enable account confirmation and password reset please visit https://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>");

                    return(RedirectToAction("Index", "Home"));
                }
                AddErrors(result);
            }
            // If we got this far, something failed, redisplay form
            model.Departments = db.Departments.ToList();
            return(View(model));
        }