b83dff00a1
da collegare x navigazione...
128 lines
3.5 KiB
C#
128 lines
3.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Data.Entity;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using StockManMVC.Models;
|
|
|
|
namespace StockManMVC.Controllers
|
|
{
|
|
public class ItemsController : Controller
|
|
{
|
|
private StockManEntities db = new StockManEntities();
|
|
|
|
// GET: Items
|
|
public ActionResult Index()
|
|
{
|
|
return View(db.Item.ToList());
|
|
}
|
|
|
|
// GET: Items/Details/5
|
|
public ActionResult Details(int? id)
|
|
{
|
|
if (id == null)
|
|
{
|
|
return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
|
|
}
|
|
Item item = db.Item.Find(id);
|
|
if (item == null)
|
|
{
|
|
return HttpNotFound();
|
|
}
|
|
return View(item);
|
|
}
|
|
|
|
// GET: Items/Create
|
|
public ActionResult Create()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
// POST: Items/Create
|
|
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
|
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
|
[HttpPost]
|
|
[ValidateAntiForgeryToken]
|
|
public ActionResult Create([Bind(Include = "ID,Descr,CodInt,Family,CodExt,DescrExt,QtaMin,QtaBatch,CurrValue")] Item item)
|
|
{
|
|
if (ModelState.IsValid)
|
|
{
|
|
db.Item.Add(item);
|
|
db.SaveChanges();
|
|
return RedirectToAction("Index");
|
|
}
|
|
|
|
return View(item);
|
|
}
|
|
|
|
// GET: Items/Edit/5
|
|
public ActionResult Edit(int? id)
|
|
{
|
|
if (id == null)
|
|
{
|
|
return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
|
|
}
|
|
Item item = db.Item.Find(id);
|
|
if (item == null)
|
|
{
|
|
return HttpNotFound();
|
|
}
|
|
return View(item);
|
|
}
|
|
|
|
// POST: Items/Edit/5
|
|
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
|
// more details see http://go.microsoft.com/fwlink/?LinkId=317598.
|
|
[HttpPost]
|
|
[ValidateAntiForgeryToken]
|
|
public ActionResult Edit([Bind(Include = "ID,Descr,CodInt,Family,CodExt,DescrExt,QtaMin,QtaBatch,CurrValue")] Item item)
|
|
{
|
|
if (ModelState.IsValid)
|
|
{
|
|
db.Entry(item).State = EntityState.Modified;
|
|
db.SaveChanges();
|
|
return RedirectToAction("Index");
|
|
}
|
|
return View(item);
|
|
}
|
|
|
|
// GET: Items/Delete/5
|
|
public ActionResult Delete(int? id)
|
|
{
|
|
if (id == null)
|
|
{
|
|
return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
|
|
}
|
|
Item item = db.Item.Find(id);
|
|
if (item == null)
|
|
{
|
|
return HttpNotFound();
|
|
}
|
|
return View(item);
|
|
}
|
|
|
|
// POST: Items/Delete/5
|
|
[HttpPost, ActionName("Delete")]
|
|
[ValidateAntiForgeryToken]
|
|
public ActionResult DeleteConfirmed(int id)
|
|
{
|
|
Item item = db.Item.Find(id);
|
|
db.Item.Remove(item);
|
|
db.SaveChanges();
|
|
return RedirectToAction("Index");
|
|
}
|
|
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing)
|
|
{
|
|
db.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
}
|
|
}
|