| 12345678910111213141516171819202122232425262728293031323334353637 |
- //
- // System.Data.IColumnMapping.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- namespace System.Data
- {
- /// <summary>
- /// Associates a data source column with a DataSet column, and is implemented by the DataColumnMapping class, which is used in common by .NET data providers.
- /// </summary>
- public interface IColumnMapping
- {
- string DataSetColumn
- {
- get
- {
- }
- set
- {
- }
- }
- string SourceColumn
- {
- get
- {
- }
- set
- {
- }
- }
- }
- }
|