ATMLDataAccessLibrary.db.beans.LuConnectorPinBean.LuConnectorPinBean C# (CSharp) Method

LuConnectorPinBean() public method

public LuConnectorPinBean ( System.Data.OleDb.OleDbDataReader reader ) : System
reader System.Data.OleDb.OleDbDataReader
return System
        public LuConnectorPinBean( OleDbDataReader reader )
            : base(_TABLE_NAME)
        {
            if( fieldMap.ContainsKey(_CONFIG_ID) )
                fieldMap[_CONFIG_ID] = reader[_CONFIG_ID];
            else
                fieldMap.Add(_CONFIG_ID, reader[_CONFIG_ID]);
            if( fieldMap.ContainsKey(_PIN_IDX) )
                fieldMap[_PIN_IDX] = reader[_PIN_IDX];
            else
                fieldMap.Add(_PIN_IDX, reader[_PIN_IDX]);
            if( fieldMap.ContainsKey(_PIN_NAME) )
                fieldMap[_PIN_NAME] = reader[_PIN_NAME];
            else
                fieldMap.Add(_PIN_NAME, reader[_PIN_NAME]);
            if( fieldMap.ContainsKey(_PIN_DIRECTION) )
                fieldMap[_PIN_DIRECTION] = reader[_PIN_DIRECTION];
            else
                fieldMap.Add(_PIN_DIRECTION, reader[_PIN_DIRECTION]);
            if( fieldMap.ContainsKey(_PIN_DESCRIPTION) )
                fieldMap[_PIN_DESCRIPTION] = reader[_PIN_DESCRIPTION];
            else
                fieldMap.Add(_PIN_DESCRIPTION, reader[_PIN_DESCRIPTION]);
            initialize();
        }

Same methods

LuConnectorPinBean::LuConnectorPinBean ( ) : System