OrderByItem.cs 781 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //
  2. // System.Data.ObjectSpaces.Query.OrderByItem
  3. //
  4. //
  5. // Author:
  6. // Richard Thombs ([email protected])
  7. //
  8. #if NET_1_2
  9. using System;
  10. namespace System.Data.ObjectSpaces.Query
  11. {
  12. [MonoTODO()]
  13. public class OrderByItem
  14. {
  15. [MonoTODO()]
  16. public OrderByItem(string item,bool ascendent)
  17. {
  18. throw new NotImplementedException();
  19. }
  20. [MonoTODO()]
  21. public bool Ascendent
  22. {
  23. get { throw new NotImplementedException(); }
  24. set { throw new NotImplementedException(); }
  25. }
  26. [MonoTODO()]
  27. public string Item
  28. {
  29. get { throw new NotImplementedException(); }
  30. set { throw new NotImplementedException(); }
  31. }
  32. [MonoTODO()]
  33. public object PhysicalInfo
  34. {
  35. get { throw new NotImplementedException(); }
  36. set { throw new NotImplementedException(); }
  37. }
  38. }
  39. }
  40. #endif