public ActionResult CreatePokerTable(Poker_Table poker_Table) { if (ModelState.IsValid) { new Poker_Table_SQL().CreateTable(poker_Table); } return(PartialView("PartialManual", poker_Table)); }
public ActionResult EditPokerTable(int?id, Poker_Table poker_Table) { if (id != null) { new Poker_Table_SQL().EditTable(id, poker_Table); } return(PartialView("PartialManual", poker_Table)); }