?xml version="1.0" encoding="UTF-8" ?>

Reservation.java

Reservation.java

package RentalService;

import java.io.Serializable;


public class Reservation implements Serializable{
	
	private static final long serialVersionUID = 2135246981275653125L;
	


	protected String reference;
protected Client made=null; 

    protected Branch pickup=null;
 protected Branch dropoff=null;
 protected Car carFor=null;
	

            public Reservation(){}
	
	
 public Reservation(String
                Reference, 
			Client Made, 
			Branch Pickup, 
			Branch Dropoff, 
			Car CarFor){
		
this.reference=Reference;

    this.made=Made;
 this.pickup=Pickup;
 this.dropoff=Dropoff;
 this.carFor=CarFor;
        
}
	
	


	
}