Ejemplo n.º 1
0
 public ActionResult Reg(Customer inCustomer)
 {
     var db = new DbCustomer();
     bool OK = db.saveCustomer(inCustomer);
     if (OK)
     {
         return RedirectToAction("List");
     }
     return View();
 }