Example #1
0
 //添加户主信息
 public int addCustomer(string customer_id, string cname, string password, string bankid)
 {
     Model.Model model = new Model.Model();
     int affected = model.addCustomerInfor(customer_id,cname ,password ,bankid );
     return affected;
 }