Beispiel #1
0
        public ActionResult Create(Customer customer)
        {
            try
            {
                using (dbModels dbModel = new dbModels())
                {
                    dbModel.Customers.Add(customer);
                    dbModel.SaveChanges();
                }
                // TODO: Add insert logic here

                return(RedirectToAction("Index"));
            }
            catch
            {
                return(View());
            }
        }
Beispiel #2
0
        public ActionResult Edit(int id, Customer customer)
        {
            try
            {
                using (dbModels dbModel = new dbModels())
                {
                    dbModel.Entry(customer).State = EntityState.Modified;
                    dbModel.SaveChanges();
                }
                // TODO: Add update logic here

                return(RedirectToAction("Index"));
            }
            catch
            {
                return(View());
            }
        }
Beispiel #3
0
        public ActionResult Create(Customer custobj)
        {
            try
            {
                // TODO: Add insert logic here
                using (dbModels obj = new dbModels())
                {
                    obj.Customers.Add(custobj);
                    obj.SaveChanges();
                }

                return(RedirectToAction("Index"));
            }
            catch
            {
                return(View());
            }
        }
Beispiel #4
0
        public ActionResult Delete(int id, FormCollection collection)
        {
            try
            {
                using (dbModels dbModel = new dbModels())
                {
                    Customer customer = dbModel.Customers.Where(x => x.Id == id).FirstOrDefault();
                    dbModel.Customers.Remove(customer);
                    dbModel.SaveChanges();
                }
                // TODO: Add delete logic here

                return(RedirectToAction("Index"));
            }
            catch
            {
                return(View());
            }
        }
 public void Save()
 {
     context.SaveChanges();
 }