public ActionResult Create(CreateTipoPlanilla modelo) { if (ModelState.IsValid) { TipoPlanillas.Insertar(modelo.NOMBRE,modelo.TIPO_PAGO); return RedirectToAction("TipoPlanillaList", "TipoPlanilla"); } return View(modelo); }
public ActionResult Create() { CreateTipoPlanilla modelo = new CreateTipoPlanilla(); return View(modelo); }