| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // System.Data.ITableMappingCollection.cs
- //
- // Author:
- // Christopher Podurgiel ([email protected])
- //
- // (C) Chris Podurgiel
- //
- namespace System.Data
- {
- /// <summary>
- /// Contains a collection of TableMapping objects, and is implemented by the DataTableMappingCollection, which is used in common by .NET data providers.
- /// </summary>
- public interface ITableMappingCollection : IList, ICollection, IEnumerable
- {
- ITableMapping Add(string sourceTableName, string dataSetTableName)
- {
- }
-
- bool Contains(string sourceTableName)
- {
- }
-
- ITableMapping GetByDataSetTable(string dataSetTableName)
- {
- }
-
- int IndexOf(string sourceTableName)
- {
- }
-
- void RemoveAt(string sourceTableName)
- {
- }
-
- object this[string index]
- {
- get
- {
- }
- set
- {
- }
- }
- }
- }
|