-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVisa.java
More file actions
38 lines (36 loc) · 887 Bytes
/
Visa.java
File metadata and controls
38 lines (36 loc) · 887 Bytes
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
package Amazon;
public class Visa extends Payment{
private String ID , ccv , date , owner_name;
public Visa(String ID, String ccv, String date, String owner_name) {
this.ID = ID;
this.ccv = ccv;
this.date = date;
this.owner_name = owner_name;
}
public Visa() {
}
public String getID() {
return ID;
}
public void setID(String ID) {
this.ID = ID;
}
public String getCcv() {
return ccv;
}
public void setCcv(String ccv) {
this.ccv = ccv;
}
public String getDate() {
return date;
}
public void setDate(String date) {
this.date = date;
}
public String getOwner_name() {
return owner_name;
}
public void setOwner_name(String owner_name) {
this.owner_name = owner_name;
}
}