public ActionResult Index() { PatronDBhandle dbhandle = new PatronDBhandle(); ModelState.Clear(); return(View(dbhandle.GetPatron())); }
public ActionResult Edit(int id) { PatronDBhandle sdb = new PatronDBhandle(); return(View(sdb.GetPatron().Find(pmodel => pmodel.Id == id))); }