Exemplo n.º 1
0
 public TableMapper(XPObjectSpace objectSpace, Database database, AttributeMapper attributeMapper)
 {
     _objectSpace      = objectSpace;
     _database         = database;
     _attributeMapper  = attributeMapper;
     _extraInfoBuilder = new ExtraInfoBuilder(_objectSpace, _attributeMapper);
 }
Exemplo n.º 2
0
 public ColumnMapper(DataTypeMapper dataTypeMapper, AttributeMapper attributeMapper)
 {
     _dataTypeMapper   = dataTypeMapper;
     _attributeMapper  = attributeMapper;
     _objectSpace      = _attributeMapper.ObjectSpace;
     _extraInfoBuilder = new ExtraInfoBuilder(_objectSpace, _attributeMapper);
 }
Exemplo n.º 3
0
 public ColumnMapper(DataTypeMapper dataTypeMapper, AttributeMapper attributeMapper) {
     _dataTypeMapper = dataTypeMapper;
     _attributeMapper = attributeMapper;
     _objectSpace = _attributeMapper.ObjectSpace;
     _extraInfoBuilder = new ExtraInfoBuilder(_objectSpace, _attributeMapper);
 }
Exemplo n.º 4
0
 public TableMapper(ObjectSpace objectSpace,Database database,AttributeMapper attributeMapper) {
     _objectSpace = objectSpace;
     _database = database;
     _attributeMapper = attributeMapper;
     _extraInfoBuilder = new ExtraInfoBuilder(_objectSpace, _attributeMapper);
 }