예제 #1
0
 public Abonnement(int numero, string nom, string prenom, string adresse, string cp, DateTime debut, DateTime fin, Revue revue)
 {
     this.adresse    = adresse;
     this.dateDebut  = debut;
     this.dateFin    = fin;
     this.nom        = nom;
     this.codePostal = cp;
     this.prenom     = prenom;
     this.numero     = numero;
     this.laRevue    = revue;
 }
예제 #2
0
파일: lesrevues.cs 프로젝트: krikri83/epoka
 public void ajouterRevue(Revue revue)
 {
     this.mesRevues.Add(revue);
 }