//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // // markash // laled //------------------------------------------------------------------------------ namespace System.Data { using System; public interface ITableMappingCollection : System.Collections.IList { object this[string index] { get; set; } ITableMapping Add(string sourceTableName, string dataSetTableName); bool Contains(string sourceTableName); ITableMapping GetByDataSetTable(string dataSetTableName); int IndexOf(string sourceTableName); void RemoveAt(string sourceTableName); } }