package assignment2;

public class ParkingPass {

	private String code;
	private String type;
	private String venueCode;
	private double hourlyFee;

	ParkingPass(String code, String type, String venueCode, double hourlyFee){
		this.setCode(code);
		this.setType(type);
		this.setVenueCode(venueCode);
		this.setHourlyFee(hourlyFee);

	}

	public void setHourlyFee(double hourlyFee) {
		this.hourlyFee = hourlyFee;
	}

	public double getHourlyFee() {
		return hourlyFee;
	}

	public void setVenueCode(String venueCode) {
		this.venueCode = venueCode;
	}

	public String getVenueCode() {
		return venueCode;
	}

	public void setType(String type) {
		this.type = type;
	}

	public String getType() {
		return type;
	}

	public void setCode(String code) {
		this.code = code;
	}

	public String getCode() {
		return code;
	}
}