public ActionResult DeleteConfirmed(int id) { Entreprise_Entreprise entreprise_Entreprise = db.Entreprises.Find(id); db.Entreprises.Remove(entreprise_Entreprise); db.SaveChanges(); return(RedirectToAction("Index")); }
public ActionResult Edit([Bind(Include = "EntrepriseID,EntrepriseName,EntrepriseNote,DateInscrit,DateMod")] Entreprise_Entreprise entreprise_Entreprise) { if (ModelState.IsValid) { entreprise_Entreprise.DateMod = DateTime.Now; db.Entry(entreprise_Entreprise).State = EntityState.Modified; db.SaveChanges(); return(RedirectToAction("Index")); } return(View(entreprise_Entreprise)); }
public ActionResult Create([Bind(Include = "EntrepriseID,EntrepriseName,EntrepriseNote,DateInscrit,DateMod")] Entreprise_Entreprise entreprise_Entreprise) { if (ModelState.IsValid) { entreprise_Entreprise.DateInscrit = DateTime.Now; entreprise_Entreprise.DateMod = DateTime.Now; db.Entreprises.Add(entreprise_Entreprise); db.SaveChanges(); return(RedirectToAction("Index")); } return(View(entreprise_Entreprise)); }
// GET: Entreprise_Entreprise/Delete/5 public ActionResult Delete(int?id) { if (id == null) { return(new HttpStatusCodeResult(HttpStatusCode.BadRequest)); } Entreprise_Entreprise entreprise_Entreprise = db.Entreprises.Find(id); if (entreprise_Entreprise == null) { return(HttpNotFound()); } return(View(entreprise_Entreprise)); }