This repository has been archived on 2025-12-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cinema-management/src/Venue.java
AndrewTrieu 04e72003de Final
2022-12-15 17:31:20 +02:00

29 lines
543 B
Java

public class Venue {
// attributes
protected String name;
protected String location;
// constructor
public Venue(String name, String location) {
this.name = name;
this.location = location;
}
// methods
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getLocation() {
return this.location;
}
public void setLocation(String location) {
this.location = location;
}
}