| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- using CD67.FicheCollege.Entity;
- using CD67.FicheCollege.Factory;
- using CD67.FicheCollege.MVC.Models;
- using CD67.PIMP.MVC.Internal;
- using System.Net;
- using System.Web.Mvc;
- namespace CD67.FicheCollege.MVC.Controllers
- {
- [Acces(groupes = "AdminActionsEdu")]
- public class ActionEduAxesController : Controller
- {
- private Entities db = new Entities();
- // GET: ActionAxes
- public ActionResult Index()
- {
- ActionEduAxeFactory fact = new ActionEduAxeFactory(db);
- ActionEduAxeIndexViewModel model = new ActionEduAxeIndexViewModel(fact.getAll());
- return View(model);
- }
- // GET: ActionEduAxe/Create
- public ActionResult Create()
- {
- ActionEduAxe axe = new ActionEduAxe();
- ActionEduAxeViewModel model = new ActionEduAxeViewModel(axe, ModeAcces.Creation);
- return View("Edit", model);
- }
- // POST: ActionEduAxe/Create
- // Afin de déjouer les attaques par sur-validation, activez les propriétés spécifiques que vous voulez lier. Pour
- // plus de détails, voir http://go.microsoft.com/fwlink/?LinkId=317598.
- [HttpPost]
- [ValidateAntiForgeryToken]
- public ActionResult Create(ActionEduAxe axe)
- {
- if (ModelState.IsValid)
- {
- ActionEduAxeFactory fact = new ActionEduAxeFactory(db);
- fact.add(ref axe);
- return RedirectToAction("Index");
- }
- ActionEduAxeViewModel model = new ActionEduAxeViewModel(axe, ModeAcces.Creation);
- return View("Edit", model);
- }
- // GET: ActionEduAxe/Edit/5
- public ActionResult Edit(int? id)
- {
- if (id == null)
- {
- return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
- }
- ActionEduAxeFactory fact = new ActionEduAxeFactory(db);
- ActionEduAxe axe = fact.getById(id.Value);
- if (axe == null)
- {
- return HttpNotFound();
- }
- ActionEduAxeViewModel model = new ActionEduAxeViewModel(axe, ModeAcces.Modification);
- return View(model);
- }
- // POST: ActionEduAxe/Edit/5
- // Afin de déjouer les attaques par sur-validation, activez les propriétés spécifiques que vous voulez lier. Pour
- // plus de détails, voir http://go.microsoft.com/fwlink/?LinkId=317598.
- [HttpPost]
- [ValidateAntiForgeryToken]
- public ActionResult Edit(ActionEduAxe axe)
- {
- if (ModelState.IsValid)
- {
- ActionEduAxeFactory fact = new ActionEduAxeFactory(db);
- fact.update(ref axe);
- return RedirectToAction("Index");
- }
- ActionEduAxeViewModel model = new ActionEduAxeViewModel(axe, ModeAcces.Modification);
- return View(model);
- }
- // GET: ActionEduAxe/Delete/5
- public ActionResult Delete(int? id)
- {
- if (id == null)
- {
- return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
- }
- ActionEduAxeFactory fact = new ActionEduAxeFactory(db);
- ActionEduAxe axe = fact.getById(id.Value);
- if (axe == null)
- {
- return HttpNotFound();
- }
- DeleteViewModel model = new DeleteViewModel(axe, "Axe", axe.Nom);
- return View("~/Views/Shared/_AdminDeleteWarning.cshtml", model);
- }
- // POST: ActionEduAxe/Delete/5
- [HttpPost, ActionName("Delete")]
- [ValidateAntiForgeryToken]
- public ActionResult DeleteConfirmed(int id)
- {
- ActionEduAxeFactory fact = new ActionEduAxeFactory(db);
- ActionEduAxe axe = fact.getById(id);
- fact.delete(ref axe);
- return RedirectToAction("Index");
- }
- public ActionResult Up(int? id)
- {
- if (id == null)
- {
- return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
- }
- ActionEduAxeFactory fact = new ActionEduAxeFactory(db);
- ActionEduAxe axe = fact.getById(id.Value);
- fact.Up(ref axe);
- return RedirectToAction("Index");
- }
- public ActionResult Down(int? id)
- {
- if (id == null)
- {
- return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
- }
- ActionEduAxeFactory fact = new ActionEduAxeFactory(db);
- ActionEduAxe axe = fact.getById(id.Value);
- fact.Down(ref axe);
- return RedirectToAction("Index");
- }
- protected override void Dispose(bool disposing)
- {
- if (disposing)
- {
- db.Dispose();
- }
- base.Dispose(disposing);
- }
- }
- }
|