public class ServizioFerroviario{
    private String code;
    private String dest;
    private double price;

    public ServizioFerroviario(String code, String dest){
	this.code = code;
	this.dest = dest;
    }

    public String getCode(){
	return code;
    }


    public String getDest(){
	return dest;
    }

    public double getPrice(){
	return price;
    }

    public void setPrice(double price){
	this.price = price;
    }

}