| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- //
- // System.Data.ObjectSpaces.Query.OrderByItem
- //
- //
- // Author:
- // Richard Thombs ([email protected])
- //
- #if NET_1_2
- using System;
- namespace System.Data.ObjectSpaces.Query
- {
- [MonoTODO()]
- public class OrderByItem
- {
- [MonoTODO()]
- public OrderByItem(string item,bool ascendent)
- {
- throw new NotImplementedException();
- }
- [MonoTODO()]
- public bool Ascendent
- {
- get { throw new NotImplementedException(); }
- set { throw new NotImplementedException(); }
- }
-
- [MonoTODO()]
- public string Item
- {
- get { throw new NotImplementedException(); }
- set { throw new NotImplementedException(); }
- }
- [MonoTODO()]
- public object PhysicalInfo
- {
- get { throw new NotImplementedException(); }
- set { throw new NotImplementedException(); }
- }
- }
- }
- #endif
|