예제 #1
0
 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;
 }
예제 #2
0
 public void setTrajet(Trajet pTrajet)
 {
     this.LeTrajet = pTrajet;
 }