Ejemplo n.º 1
0
 public AnomalieCab(TypeAnomalieCab type, string valeurParution, string valeurCab, bool nécessiteAction,
                    bool estIncompatible)
 {
     Type            = type;
     ValeurParution  = valeurParution;
     ValeurCab       = valeurCab;
     NécessiteAction = nécessiteAction;
     EstIncompatible = estIncompatible;
 }
Ejemplo n.º 2
0
 public IAnomalieCab CréerAnomalieCab(TypeAnomalieCab type, string valeurParution, string valeurCab, bool nécessiteAction, bool estIncompatible)
 {
     return(_factoryFunc(type, valeurParution, valeurCab, nécessiteAction, estIncompatible));
 }