forked from nnamdei/smart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBookingCheckOut.java
More file actions
110 lines (85 loc) · 2.28 KB
/
Copy pathBookingCheckOut.java
File metadata and controls
110 lines (85 loc) · 2.28 KB
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
package com.kunle.smartair.model;
import java.io.Serializable;
/**
* Created by Habeex on 9/17/2017.
*/
public class BookingCheckOut implements Serializable{
public static final String EXTRA = "com.kunle.smartair.BOOKING_CHECK_OUT_EXTRA";
String departure;
String destination;
String adult;
String children;
String infant;
String oneWayRB;
String returnRB;
String onDate;
String offDate;
String EditValueName;
String EditValueAddress;
public String getEditValueName() {
return EditValueName;
}
public void setEditValueName(String editValueName) {
EditValueName = editValueName;
}
public String getEditValueAddress() {
return EditValueAddress;
}
public void setEditValueAddress(String editValueAddress) {
EditValueAddress = editValueAddress;
}
public String getDeparture() {
return departure;
}
public void setDeparture(String departure) {
this.departure = departure;
}
public String getDestination() {
return destination;
}
public void setDestination(String destination) {
this.destination = destination;
}
public String getAdult() {
return adult;
}
public void setAdult(String adult) {
this.adult = adult;
}
public String getChildren() {
return children;
}
public void setChildren(String children) {
this.children = children;
}
public String getInfant() {
return infant;
}
public void setInfant(String infant) {
this.infant = infant;
}
public String getOneWayRB() {
return oneWayRB;
}
public void setOneWayRB(String oneWayRB) {
this.oneWayRB = oneWayRB;
}
public String getReturnRB() {
return returnRB;
}
public void setReturnRB(String returnRB) {
this.returnRB = returnRB;
}
public String getOnDate() {
return onDate;
}
public void setOnDate(String onDate) {
this.onDate = onDate;
}
public String getOffDate() {
return offDate;
}
public void setOffDate(String offDate) {
this.offDate = offDate;
}
}