ITableMapping.cs 731 B

12345678910111213141516171819202122232425262728
  1. //------------------------------------------------------------------------------
  2. // <copyright file="ITableMapping.cs" company="Microsoft">
  3. // Copyright (c) Microsoft Corporation. All rights reserved.
  4. // </copyright>
  5. // <owner current="true" primary="true">[....]</owner>
  6. // <owner current="true" primary="false">[....]</owner>
  7. //------------------------------------------------------------------------------
  8. namespace System.Data {
  9. using System;
  10. public interface ITableMapping {
  11. IColumnMappingCollection ColumnMappings {
  12. get;
  13. }
  14. string DataSetTable {
  15. get;
  16. set;
  17. }
  18. string SourceTable {
  19. get;
  20. set;
  21. }
  22. }
  23. }