-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomer.java
62 lines (48 loc) · 1019 Bytes
/
Customer.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
public class Customer {
private String fName, lName, age, contactId, phone, email;
public Customer(String fName, String lName, String age, String contactId, String phone, String email)
{
this.fName = fName;
this.lName = lName;
this.age = age;
this.contactId = contactId;
this.phone = phone;
this.email = email;
}
public String getfName() {
return fName;
}
public void setfName(String fName) {
this.fName = fName;
}
public String getlName() {
return lName;
}
public void setlName(String lName) {
this.lName = lName;
}
public String getAge() {
return age;
}
public void setAge(String age) {
this.age = age;
}
public String getContactId() {
return contactId;
}
public void setContactId(String contactId) {
this.contactId = contactId;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}
}