Exemplo n.º 1
0
        public ActionResult Register(PotentialsViewModel model)
        {
            if (ModelState.IsValid)
            {
                var potential = new Potential_Customers {
                    CompanyName = model.CompanyName, ContactName = model.ContactName, ContactPhone = model.ContactPhone, ContactEmail = model.ContactEmail, Notes = model.Notes
                };

                db.Potential_Customers.Add(potential);
                db.SaveChanges();

                //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 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("RegisterConfirm", "Home", model));
                //}
                //AddErrors(result);
            }

            // If we got this far, something failed, redisplay form
            return(View(model));
        }
Exemplo n.º 2
0
        public ActionResult DeleteConfirmed(int id)
        {
            Potential_Customers potential_Customers = db.p_customers.Find(id);

            db.p_customers.Remove(potential_Customers);
            db.SaveChanges();
            return(RedirectToAction("Index"));
        }
Exemplo n.º 3
0
 public ActionResult Edit([Bind(Include = "potentialID,companyName,ContactName,contactPhone,contactEmail,notes")] Potential_Customers potential_Customers)
 {
     if (ModelState.IsValid)
     {
         db.Entry(potential_Customers).State = EntityState.Modified;
         db.SaveChanges();
         return(RedirectToAction("Index"));
     }
     return(View(potential_Customers));
 }
Exemplo n.º 4
0
        public ActionResult Create([Bind(Include = "potentialID,companyName,ContactName,contactPhone,contactEmail,notes")] Potential_Customers potential_Customers)
        {
            if (ModelState.IsValid)
            {
                db.p_customers.Add(potential_Customers);
                db.SaveChanges();
                return(RedirectToAction("Index"));
            }

            return(View(potential_Customers));
        }
Exemplo n.º 5
0
        // GET: Potential_Customers/Delete/5
        public ActionResult Delete(int?id)
        {
            if (id == null)
            {
                return(new HttpStatusCodeResult(HttpStatusCode.BadRequest));
            }
            Potential_Customers potential_Customers = db.p_customers.Find(id);

            if (potential_Customers == null)
            {
                return(HttpNotFound());
            }
            return(View(potential_Customers));
        }