示例#1
0
 public ActionResult Index(Customer fc)
 {
     // _Customer = new EFCustomer();
     _Customer.save(fc);
     return(RedirectToAction("Display", "Home"));
 }
示例#2
0
 public ActionResult Index(Customer fc)
 {
     cust = new EFCustomer();
     cust.save(fc);
     return(View());
 }