ITableMappingCollection.cs 800 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //
  2. // System.Data.ITableMappingCollection.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// Contains a collection of TableMapping objects, and is implemented by the DataTableMappingCollection, which is used in common by .NET data providers.
  13. /// </summary>
  14. public interface ITableMappingCollection : IList, ICollection, IEnumerable
  15. {
  16. ITableMapping Add(string sourceTableName, string dataSetTableName)
  17. {
  18. }
  19. bool Contains(string sourceTableName)
  20. {
  21. }
  22. ITableMapping GetByDataSetTable(string dataSetTableName)
  23. {
  24. }
  25. int IndexOf(string sourceTableName)
  26. {
  27. }
  28. void RemoveAt(string sourceTableName)
  29. {
  30. }
  31. object this[string index]
  32. {
  33. get
  34. {
  35. }
  36. set
  37. {
  38. }
  39. }
  40. }
  41. }