Variable.cs 990 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. //
  2. // System.Data.Mapping.Variable
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2003
  8. //
  9. #if NET_1_2
  10. using System.Data.SqlXml;
  11. namespace System.Data.Mapping {
  12. public class Variable
  13. {
  14. #region Properties
  15. [MonoTODO]
  16. public ConditionCollection Conditions {
  17. get { throw new NotImplementedException (); }
  18. }
  19. [MonoTODO]
  20. public IDomainStructure DomainStructure {
  21. get { throw new NotImplementedException (); }
  22. }
  23. [MonoTODO]
  24. public FieldCollection Fields {
  25. get { throw new NotImplementedException (); }
  26. }
  27. [MonoTODO]
  28. public string Name {
  29. get { throw new NotImplementedException (); }
  30. }
  31. [MonoTODO]
  32. public DataSource OwnerDataSource {
  33. get { throw new NotImplementedException (); }
  34. }
  35. [MonoTODO]
  36. public string Select {
  37. get { throw new NotImplementedException (); }
  38. }
  39. #endregion // Properties
  40. }
  41. }
  42. #endif // NET_1_2