// // System.Data.RelationshipConverter.cs // // Author: // Umadevi S (sumadevi@novell.com) // // Copyright (C) Novell Inc, 2004 // using System; using System.ComponentModel; using System.Globalization; namespace System.Data { internal sealed class RelationshipConverter : ExpandableObjectConverter { #region Constructors [MonoTODO] public RelationshipConverter () { throw new NotImplementedException (); } #endregion // Constructors #region Methods [MonoTODO] public override object ConvertTo (ITypeDescriptorContext context, CultureInfo culture, object value, Type destinationType) { throw new NotImplementedException (); } [MonoTODO] public override bool CanConvertTo (ITypeDescriptorContext context, Type destinationType) { throw new NotImplementedException (); } #endregion // Methods } }