-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVenue.java
More file actions
38 lines (30 loc) · 782 Bytes
/
Venue.java
File metadata and controls
38 lines (30 loc) · 782 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
public class Venue {
private int venueId;
private String venueName;
private String venueType;
private int capacity;
public int getVenueId() {
return venueId;
}
public void setVenueId(int venueId) {
this.venueId = venueId;
}
public String getVenueName() {
return venueName;
}
public void setVenueName(String venueName) {
this.venueName = venueName;
}
public String getVenueType() {
return venueType;
}
public void setVenueType(String venueType) {
this.venueType = venueType;
}
public int getCapacity() {
return capacity;
}
public void setCapacity(int capacity) {
this.capacity = capacity;
}
}