using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Mvc; namespace PSTW_CentralSystem.Views.JSA { public class JSAController : Controller { // GET: JSAController public ActionResult Index() { return View(); } // GET: JSAController/Details/5 public ActionResult Details(int id) { return View(); } // GET: JSAController/Create public ActionResult Create() { return View(); } // POST: JSAController/Create [HttpPost] [ValidateAntiForgeryToken] public ActionResult Create(IFormCollection collection) { try { return RedirectToAction(nameof(Index)); } catch { return View(); } } // GET: JSAController/Edit/5 public ActionResult Edit(int id) { return View(); } // POST: JSAController/Edit/5 [HttpPost] [ValidateAntiForgeryToken] public ActionResult Edit(int id, IFormCollection collection) { try { return RedirectToAction(nameof(Index)); } catch { return View(); } } // GET: JSAController/Delete/5 public ActionResult Delete(int id) { return View(); } // POST: JSAController/Delete/5 [HttpPost] [ValidateAntiForgeryToken] public ActionResult Delete(int id, IFormCollection collection) { try { return RedirectToAction(nameof(Index)); } catch { return View(); } } } }