class Inscription { private int numDossier; private DateTime - TopicsExpress



          

class Inscription { private int numDossier; private DateTime dateInscription; private Candidat candidat; private Niveau niveau; public filiere[] filieres = new filiere[3]; // les property public int NumDossier { get { return numDossier; } set { numDossier = value; } } public DateTime DateInscription { get { return dateInscription; } set { dateInscription = value; } } public Candidat Candidat { get { return candidat; } set { candidat = value; } } public Niveau Niveau { get { return niveau; } set { niveau = value; } } public Inscription() { } public Inscription(int num, DateTime date, Candidat candidat, Niveau niveau, filiere[] filiere) { this.numDossier = num; this.dateInscription = date; this.candidat = candidat; this.niveau = niveau; this.filieres = filiere; } public string toString() { string s = " numero " + this.numDossier + " " + " la date " + this.dateInscription + " " + " candidat" + this.candidat + " " + " niveau" + this.niveau + " " + " tableau " + this.filieres; return s; }
Posted on: Sat, 13 Jul 2013 15:15:46 +0000

Trending Topics




© 2015