Example #1
0
        public ActionResult CreateAddress(AdressCreationBindingModel model)
        {
            if (model == null)
            {
                throw new ArgumentNullException("The adress can not be null!");
            }

            if (!ModelState.IsValid)
            {
                throw new ArgumentException("The inputed address is not corect!");
            }

            var user = this.Context.Users.Find(this.User.Identity.GetUserId());
            Adress adress = new Adress(
                model.City,
                model.Street,
                model.StreetNumber,
                model.BlockNumber,
                model.PostCode
                );

            this.Context.Adresses.Add(adress);

            user.Adress = adress;

            this.Context.SaveChanges();

            return RedirectToAction("Index", "Home");
        }
Example #2
0
        public ActionResult CreateAddress(AdressCreationBindingModel model)
        {
            if (model == null)
            {
                throw new ArgumentNullException("The adress can not be null!");
            }

            if (!ModelState.IsValid)
            {
                throw new ArgumentException("The inputed address is not corect!");
            }

            var    user   = this.Context.Users.Find(this.User.Identity.GetUserId());
            Adress adress = new Adress(
                model.City,
                model.Street,
                model.StreetNumber,
                model.BlockNumber,
                model.PostCode
                );

            this.Context.Adresses.Add(adress);

            user.Adress = adress;

            this.Context.SaveChanges();

            return(RedirectToAction("Index", "Home"));
        }
Example #3
0
        public async Task <ActionResult> Register(RegisterViewModel model)
        {
            if (ModelState.IsValid)
            {
                AdressCreationBindingModel address = new AdressCreationBindingModel(
                    model.City,
                    model.Street,
                    model.StreetNumber,
                    model.BlockNumber,
                    model.PostCode);
                var user = new User
                {
                    UserName    = model.Email,
                    Email       = model.Email,
                    FirstName   = model.FirstName,
                    LatsName    = model.LastName,
                    PhoneNumber = model.PhoneNumber
                };

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

                    return(RedirectToAction("CreateAddress", "Address", address));
                }

                AddErrors(result);
            }

            // If we got this far, something failed, redisplay form
            return(View(model));
        }
Example #4
0
        public async Task<ActionResult> Register(RegisterViewModel model)
        {
            if (ModelState.IsValid)
            {
                AdressCreationBindingModel address = new AdressCreationBindingModel(
                    model.City,
                    model.Street,
                    model.StreetNumber,
                    model.BlockNumber,
                    model.PostCode);
                var user = new User
                {
                    UserName = model.Email,
                    Email = model.Email,
                    FirstName = model.FirstName,
                    LatsName = model.LastName,
                    PhoneNumber = model.PhoneNumber
                };

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

                    return RedirectToAction("CreateAddress", "Address", address);
                }

                AddErrors(result);
            }

            // If we got this far, something failed, redisplay form
            return View(model);
        }