示例#1
0
 public ActionResult EditCustomer(CustomerModel model)
 {
     _customerServices = new CustomerServices();
     _customerServices.UpdateCustomer(model);
     return(RedirectToAction("ListCustomer"));
 }