public Transdisciplinaire(Intervenant client, Intervenant tuteur, int anneeScolaire, DateTime dateDebut, Sujet sujet, int nbreEtudiants)
 {
     this.client        = client;
     this.tuteur        = tuteur;
     this.duree         = 30 * 8; //environ 8 mois ?
     this.anneeScolaire = anneeScolaire;
     this.dateDebut     = dateDebut;
     this.promo         = Promo.premiereAnnee;
     this.sujet         = sujet;
     this.nbreEtudiants = nbreEtudiants;
 }
Example #2
0
        public ProjetFinEtudes(Intervenant tuteur, int anneeScolaire, DateTime dateDebut, Sujet suj)
        {
            this.tuteur        = tuteur;
            this.duree         = 30 * 3; //je sais pas cb de temps ça dure mdr
            this.anneeScolaire = anneeScolaire;
            this.dateDebut     = dateDebut;
            this.promo         = Promo.troisiemeAnnee;
            this.sujet         = suj;
            this.nbreEtudiants = 1;
            this.livrables     = new List <Livrable>();

            Soutenance grandOral = new Soutenance("PFE", 1);

            livrables.Add(grandOral);
        }