// Le constructeur prend en parametre une instance gerant l'implantation et qui
 // est utilisee dans les autres methodes pour dessiner du texte ou gerer la saisie
 // d'entrees au clavier.
 protected FormulaireImmatriculation(IFormulaireImpl implantation)
 {
     Implantation = implantation;
 }
Esempio n. 2
0
 public FormImmatriculationFrance(IFormulaireImpl inplantation)
     : base(inplantation)
 {
 }
Esempio n. 3
0
 public FormulaireImmatriculation(IFormulaireImpl inplantation)
 {
     this.inplantation = inplantation;
 }
 public FormImmatriculationLuxembourg(IFormulaireImpl implantation) : base(implantation)
 {
 }