-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRent.java
81 lines (61 loc) · 1.83 KB
/
Rent.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
package com.hammad.jfx1;
public class Rent {
String rentFname;
String rentLname;
String rentLicense;
String rentCarMake;
String rentCarModel;
String rentCarPlate;
String rentDaysRented;
public String getRentFname() {
return rentFname;
}
public void setRentFname(String rentFname) {
this.rentFname = rentFname;
}
public String getRentLname() {
return rentLname;
}
public void setRentLname(String rentLname) {
this.rentLname = rentLname;
}
public String getRentLicense() {
return rentLicense;
}
public void setRentLicense(String rentLicense) {
this.rentLicense = rentLicense;
}
public String getRentCarMake() {
return rentCarMake;
}
public void setRentCarMake(String rentCarMake) {
this.rentCarMake = rentCarMake;
}
public String getRentCarModel() {
return rentCarModel;
}
public void setRentCarModel(String rentCarModel) {
this.rentCarModel = rentCarModel;
}
public String getRentCarPlate() {
return rentCarPlate;
}
public void setRentCarPlate(String rentCarPlate) {
this.rentCarPlate = rentCarPlate;
}
public String getRentDaysRented() {
return rentDaysRented;
}
public void setRentDaysRented(String rentDaysRented) {
this.rentDaysRented = rentDaysRented;
}
public Rent(String rentFname, String rentLname, String rentLicense, String rentCarMake, String rentCarModel, String rentCarPlate, String rentDaysRented) {
this.rentFname = rentFname;
this.rentLname = rentLname;
this.rentLicense = rentLicense;
this.rentCarMake = rentCarMake;
this.rentCarModel = rentCarModel;
this.rentCarPlate = rentCarPlate;
this.rentDaysRented = rentDaysRented;
}
}