using System; namespace InnerClasses { public class InfoImpl: Info { public InfoImpl() { this.m_oNotes = new InnerClasses.Info__NotesImpl(); } override public string name { set{ this.m_strName = value; } get{ return this.m_strName; } } override public string message { set{ this.m_strMessage = value; } get{ return this.m_strMessage; } } override public string businessNote { set{ this.m_oNotes.m_strBusinessNote = value; } get{ return this.m_oNotes.m_strBusinessNote; } } override public string privateNote { set{ this.m_oNotes.m_strPrivateNote = value; } get{ return this.m_oNotes.m_strPrivateNote; } } } }