public ActionResult Edit(int id, Empresa collection) { try { // TODO: Add update logic here return RedirectToAction("Index"); } catch { return View(); } }
public ActionResult Create(Empresa collection) { try { // TODO: Add insert logic here return RedirectToAction("Index"); } catch { return View(); } }