RelationshipMap.cs 821 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. //
  2. // System.Data.Mapping.RelationshipMap
  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 RelationshipMap
  13. {
  14. #region Properties
  15. [MonoTODO]
  16. public MappingSchema OwnerMappingSchema {
  17. get { throw new NotImplementedException (); }
  18. }
  19. [MonoTODO]
  20. public Relationship SourceRelationship {
  21. get { throw new NotImplementedException (); }
  22. }
  23. [MonoTODO]
  24. public IDomainConstraint TargetConstraint {
  25. get { throw new NotImplementedException (); }
  26. }
  27. [MonoTODO]
  28. public string TargetConstraintName {
  29. get { throw new NotImplementedException (); }
  30. }
  31. #endregion // Properties
  32. }
  33. }
  34. #endif // NET_1_2