// // System.Data.ObjectSpaces.Query.OrderByItemCollection // // // Author: // Richard Thombs (stony@stony.org) // #if NET_1_2 using System; using System.Collections; namespace System.Data.ObjectSpaces.Query { [MonoTODO()] public class OrderByItemCollection : CollectionBase { [MonoTODO()] public OrderByItemCollection() : base() { throw new NotImplementedException(); } [MonoTODO()] public void Add(OrderByItem orderByItem) { throw new NotImplementedException(); } [MonoTODO()] public OrderByItemCollection Clone() { throw new NotImplementedException(); } // FIXME: This ain't right... [MonoTODO()] public OrderByItem Item { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } } } } #endif