public static ICableSwitchCondition ReadFromXMLNode(XmlNode node, CCableSystem cableSystem) { // Create a condition by length and two states CCableSwitchLength2StatesCondition t = new CCableSwitchLength2StatesCondition(cableSystem); t.ReadFromXMLNode(node); return t; }
public CCableSwitchLength2StatesCondition(CCableSystem cableSystem) { m_cableSystem = cableSystem; }
public CCableState(CCableSystem cableSystem, CCablingConnectionIndicator twoPointsIndicator) : base(cableSystem) { m_cableSystem = cableSystem; m_twoPointsIndicator = twoPointsIndicator; }