Package ControlLayer

Examples of ControlLayer.ControlCustomer.findCustomer()


 
 
  public void searchCustomer(ActionEvent eve){
    ControlCustomer ctrCust=new ControlCustomer();
    String cpr=textField.getText();
    Customer cust=ctrCust.findCustomer(cpr);
    textField_1.setText(cust.getFirsTName());
    textField_2.setText(cust.getLastName());
    textField_3.setText(cust.getAddress());
    textField_4.setText(Integer.toString(cust.getCity().getZipCode()));
    textField_5.setText(cust.getCity().getCity());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.