Ejemplo n.º 1
0
 public ActionResult CadastroLocal(Local local)
 {
     locRep.Create(local);
     return RedirectToAction("Login");
 }
Ejemplo n.º 2
0
 public ActionResult UpdateLocal(Local local)
 {
     locRep.Update(local);
     return RedirectToAction("Local");
 }