Ejemplo n.º 1
0
 public FabriqueArbre(
     IArbreConstruction arbre,
     ElementConstructionDto elementsConstruction)
 {
     this.arbre = arbre;
     this.elementsConstruction = elementsConstruction;
 }
 public ConstructionElementArbre(
     IArbreConstruction arbre)
 {
     this.arbre = arbre;
 }
Ejemplo n.º 3
0
 public FabriqueArbre(
     IArbreConstruction arbre) : this(arbre, null)
 {
 }
Ejemplo n.º 4
0
 public FabriqueArbreDepuisJson(
     IArbreConstruction arbre,
     string pathFichierJson) : base(arbre)
 {
     this.pathFichierJson = pathFichierJson;
 }
Ejemplo n.º 5
0
 public FabriqueArbreDepuisJson(
     IArbreConstruction arbre) : this(arbre, null)
 {
 }
Ejemplo n.º 6
0
 public AnalyseurSyntaxique(IArbreConstruction arbre)
 {
     this.arbre = arbre;
 }
Ejemplo n.º 7
0
 public ConstructionMultiChoixSurArbre(
     IArbreConstruction arbre) : base(arbre)
 {
 }