public class Prenotazione {
	
	private String cognome;
	private int numeroPersone;
	
	public Prenotazione(String c, int n)
	{
		cognome=c;
		numeroPersone=n;
	}
	
	public String getCognome() {
		return cognome;
	}
	public void setCognome(String cognome) {
		cognome = cognome;
	}
	public int getNumeroPersone() {
		return numeroPersone;
	}
	public void setNumeroPersone(int numeroPersone) {
		this.numeroPersone = numeroPersone;
	}
	
	

}
