Exemplo n.º 1
0
 public ActionResult Updates(RepRegister rep)
 {
     _registerBO.UpdateRegister(rep);
     return RedirectToAction("Index", "Home");
 }
Exemplo n.º 2
0
 public ActionResult InsertNew(RepRegister rep)
 {
     _registerBO.NewRegister(rep);
     return RedirectToAction("Index", "Home");
 }