IColumnMapping.cs 512 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // System.Data.IColumnMapping.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. namespace System.Data
  10. {
  11. /// <summary>
  12. /// 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.
  13. /// </summary>
  14. public interface IColumnMapping
  15. {
  16. string DataSetColumn
  17. {
  18. get
  19. {
  20. }
  21. set
  22. {
  23. }
  24. }
  25. string SourceColumn
  26. {
  27. get
  28. {
  29. }
  30. set
  31. {
  32. }
  33. }
  34. }
  35. }