Package com.mkyong.customer.model

Examples of com.mkyong.customer.model.Customer


  }
 
  //add a new customer data into database
  public String addCustomer(){
   
    Customer cust = new Customer();
    cust.setName(getName());
    cust.setAddress(getAddress());
   
    customerBo.addCustomer(cust);
   
    clearForm();
   
View Full Code Here

TOP

Related Classes of com.mkyong.customer.model.Customer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.