Update Customer.java

This commit is contained in:
abhibavishi 2015-06-17 09:56:50 +05:30
parent 729b521890
commit 371445d1d7
1 changed files with 5 additions and 6 deletions

View File

@ -1,21 +1,20 @@
public class Customer {
private int id;
private String name;
private String customerAddress;
Customer(){
this.name="";
this.customerAddress="";
}
Customer(String name, String address){
this.name = name;
this.customerAddress = address;
}
public int getId() {
return id;
}