OrderByItemCollection.cs 789 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //
  2. // System.Data.ObjectSpaces.Query.OrderByItemCollection
  3. //
  4. //
  5. // Author:
  6. // Richard Thombs ([email protected])
  7. //
  8. #if NET_1_2
  9. using System;
  10. using System.Collections;
  11. namespace System.Data.ObjectSpaces.Query
  12. {
  13. [MonoTODO()]
  14. public class OrderByItemCollection : CollectionBase
  15. {
  16. [MonoTODO()]
  17. public OrderByItemCollection() : base()
  18. {
  19. throw new NotImplementedException();
  20. }
  21. [MonoTODO()]
  22. public void Add(OrderByItem orderByItem)
  23. {
  24. throw new NotImplementedException();
  25. }
  26. [MonoTODO()]
  27. public OrderByItemCollection Clone()
  28. {
  29. throw new NotImplementedException();
  30. }
  31. // FIXME: This ain't right...
  32. [MonoTODO()]
  33. public OrderByItem Item
  34. {
  35. get { throw new NotImplementedException(); }
  36. set { throw new NotImplementedException(); }
  37. }
  38. }
  39. }
  40. #endif