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