public Reservation(int pId, int pPrix, string pDescente, string pMonte, Trajet pTrajet, Utilisateur pConducteur) { this.Id = pId; this.Prix = pPrix; this.Descente = pDescente; this.Monte = pMonte; this.LeTrajet = pTrajet; this.Conducteur = pConducteur; }
public void setTrajet(Trajet pTrajet) { this.LeTrajet = pTrajet; }