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; }
public IAnomalieCab CréerAnomalieCab(TypeAnomalieCab type, string valeurParution, string valeurCab, bool nécessiteAction, bool estIncompatible) { return(_factoryFunc(type, valeurParution, valeurCab, nécessiteAction, estIncompatible)); }