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